在angular ui-sref中添加文本参数
Add text parameters in angular ui-sref
我正在尝试向 ui-sref 添加参数。如果我尝试这个,它会完美地工作
<a ui-sref="services.test({ id: 2 , other_id: 3 })">test</a>
但如果我尝试这样做,它不起作用
<a ui-sref="services.test({ id: firstexmple , other_id: secondone })">test</a>
如果您尝试将 id
设置为文字值 "firstexample" 并将 other_id
设置为 "secondone" 您需要像在普通 [= 中编写字符串一样编写它们21=] 代码,所以:
<a ui-sref="services.test({ id: 'firstexmple' , other_id: 'secondone' })">test</a>
(请注意,您不能使用双引号(例如 id: "firstexmple"
),因为您已经在使用它们来包裹整个 ui-sref
属性的值。
我正在尝试向 ui-sref 添加参数。如果我尝试这个,它会完美地工作
<a ui-sref="services.test({ id: 2 , other_id: 3 })">test</a>
但如果我尝试这样做,它不起作用
<a ui-sref="services.test({ id: firstexmple , other_id: secondone })">test</a>
如果您尝试将 id
设置为文字值 "firstexample" 并将 other_id
设置为 "secondone" 您需要像在普通 [= 中编写字符串一样编写它们21=] 代码,所以:
<a ui-sref="services.test({ id: 'firstexmple' , other_id: 'secondone' })">test</a>
(请注意,您不能使用双引号(例如 id: "firstexmple"
),因为您已经在使用它们来包裹整个 ui-sref
属性的值。