如何在app-router中使用regex mix和path变量

时间:2015-04-17 06:30:27

标签: regex polymer

我有一个网址:

<a href="/article/category/catalog/title"></a>

app-router:

<app-route path="/^\/article\/\w+\/\w+/\/:title/i" regex import="/pages/article/content-page.html"></app-route>

当我点击该网址时,它应与路由器匹配,即文章匹配文章,类别匹配\w,目录匹配\w,标题匹配:title,因为我想要title变量传入另一个自定义元素来查询db,我是如何实现的?

0 个答案:

没有答案