AngularJS:无法使用ui-router显示参数

时间:2016-05-17 14:12:40

标签: angularjs angular-ui-router

我正在尝试从用户那里获取输入并将其传递给名为other

的第二页

在状态定义中添加了一个名为test

的新参数

您可以查看代码here

other看起来像这样

<li><a ui-sref="other">#/other/fooVal</a></li>

如果我试图像下面那样改变它就会被禁用

<li><a ui-sref="other{{test: 'test1'">#/other/fooVal</a></li>

id应如何在other页面

中显示用户输入

PS:其他sref工作正常

1 个答案:

答案 0 :(得分:1)

<a ui-sref="other{{test: 'test1'">#/other/fooVal</a>

应该是

<a ui-sref="other({test: 'test1'})">#/other/fooVal</a>

请注意它是括号({ })中的对象,不是表达式块{{ }}