How to get query string in Polymer

流过昼夜 提交于 2019-12-22 05:55:01

问题


Is there anyway how can I get query string in Polymer?

http://localhost:8080/search?param=ppshein

I want to get search?param=ppshein or param=ppshein in Polymer.

I've tried to get query string in app-route but it display nothing.

<app-route
    route="[[route]]"
    pattern="/:id"
    data="{{routeData}}"></app-route>

[[routeData.id]] **

回答1:


You could use <app-location>.queryParams:

<app-location route="{{route}}" query-params="{{queryParams}}"></app-location>

queryParams is an object containing key/value pairs of the parsed query parameters. Given http://localhost:8080/search?param=ppshein, queryParams would be:

{
  param: 'ppshein'
}


来源:https://stackoverflow.com/questions/40668826/how-to-get-query-string-in-polymer

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!