在Jade模板中构建url编码

时间:2015-08-05 09:33:09

标签: javascript html pug urlencode

我有一些对象可以渲染到玉石

obj=
   urls = [urls]
   ids = [ids]

我需要生成这样的网址:

'http://www.host.com/?urls=["13213", "13123"]&id=["dasd", "dsdad"]'

但我正在使用这样的模板:

'http://www.host.com/?urls=#{object.urls}&id=#{object.ids}'

回来了我

'http://www.host.com/?urls=13213,13123&id=dasd,dsdad'

1 个答案:

答案 0 :(得分:-1)

解决方案就在这里

iframeUrl = "https://host"
      iframeUrl += "&ids=#{encodeURIComponent JSON.stringify parsedData.ids}" unless _.isEmpty(parsedData.ids)
      iframeUrl += "&titles=#{encodeURIComponent JSON.stringify parsedData.titles}" unless _.isEmpty(parsedData.titles)