我正在尝试从用户那里获取输入并将其传递给名为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工作正常
答案 0 :(得分:1)
<a ui-sref="other{{test: 'test1'">#/other/fooVal</a>
应该是
<a ui-sref="other({test: 'test1'})">#/other/fooVal</a>
请注意它是括号({ })
中的对象,不是表达式块{{ }}
。