angularjs – 在ui-router中动态构造的ui-sref属性

前端之家收集整理的这篇文章主要介绍了angularjs – 在ui-router中动态构造的ui-sref属性前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是新来的,特别是ui-router。

这是一个链接

<a ui-sref="/topic/{{topic.id}}">SomeText</a>

链接动态填充。

所以当我尝试从我的配置访问该状态,如下所示:

.state('topics/:topicId',{
        url:"",templateUrl: "",controller: ""
    })

我收到这个错误消息:

Error: Could not resolve ‘/topics/myTopic’ from state ‘topics’

在上面:myTopic是一个变量名。

你几乎在那里只有参数必须是URL定义的一部分,而不是状态的名称
.state('topics',{
    url: '/{id:[0-9]{1,8}}',// we can also add some constraint,like int id only
    templateUrl: "",controller: ""
 })

并且如何调用它(其中currentItem.id将被动态注入作为某些ng重复的一部分)

<a ui-sref="topics({id:currentItem.id})">SomeText</a>

因为ui-sref表示:ui-sref =’stateName({param:value,param:value})。更多信息:

> ui router,URL Parameters
> ui-sref

猜你在找的Angularjs相关文章