“TypeScript Read Parameters URL -адрес” Ответ

TypeScript Read Parameters URL -адрес

// get all search params (including ?)
const queryString = window.location.search;
// it will look like this: ?product=shirt&color=blue&newuser&size=m

// parse the query string's paramters
const urlParams = new URLSearchParams(queryString);

// To get a parameter simply write something like the follwing
const paramValue = urlParams.get('yourParam');
Zwazel

Получить параметры URL в TypeScript

import {Router, ActivatedRoute, Params} from '@angular/router';
import {OnInit, Component} from '@angular/core';

@Component({...})
export class MyComponent implements OnInit {

  constructor(private activatedRoute: ActivatedRoute) {}

  ngOnInit() {
    // Note: Below 'queryParams' can be replaced with 'params' depending on your requirements
    this.activatedRoute.queryParams.subscribe(params => {
        const userId = params['userId'];
        console.log(userId);
      });
  }

}
Repulsive Raven

Ответы похожие на “TypeScript Read Parameters URL -адрес”

Вопросы похожие на “TypeScript Read Parameters URL -адрес”

Больше похожих ответов на “TypeScript Read Parameters URL -адрес” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования