Answers for "get url in react router"

1

get url params angular

import { ActivatedRoute, Params } from '@angular/router';

@Component(...)
export class MyComponent implements OnInit {
   constructor (private activatedRoute: ActivatedRoute){}
   
   ngOnInit() {
    this.activatedRoute.params.subscribe((params: Params) => {
      if (params.myParam){
        // Do something
      }
    });
   }
}
Posted by: Guest on June-25-2020
2

get url react

window.location.href
Posted by: Guest on April-15-2020
3

get app url in laravel

URL::to('/');
Posted by: Guest on June-27-2020
0

get current url react router

import {withRouter} from 'react-router-dom';

const SomeComponent = withRouter(props => <MyComponent {...props}/>);

class MyComponent extends React.Component {
  SomeMethod () {
    const {pathname} = this.props.location;
  }
}
Posted by: Guest on May-21-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language