как передать динамические c параметры запроса в URL-адресе из объекта массива - PullRequest
1 голос
/ 10 июля 2020

Я получаю такой объект массива: enter image description here

i am showing one third party form using in angular. Now i want to pass query params in url so that that form should b pre-filled.
My form can be pre filled if i enter this url :

http://myform.com?d[/data/patch_form/crop1]=abc&d[/data/patch_form/name]=xyz (this is hard coded)

in which after "/patch_form/" is a key which is also present in my object.

how can i pass this array object's all keys and value in my url so that all keys can be pass through url.?

.html

  

.ts строка консоли

console.log(this.selectedTimeLine.formKeyValues)

1 Ответ

0 голосов
/ 10 июля 2020

что ты пробовал? Беглый взгляд на документацию angular дает этот пример.

    // Set our navigation extras object
    // that contains our global query params and fragment
    let navigationExtras: NavigationExtras = {
      queryParams: { 'session_id': sessionId },
    };

    // Redirect to the login page with extras
    return this.router.createUrlTree(['/login'], navigationExtras);
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...