我从应用程序中复制了工作代码,并更改了参数,并且错误不断出现。怎么了? This is the error message from AngularJS。
我已经查看过StackOverflow和Google。 AngularJS文档也无济于事。
链接:
<a ui-sref="auth.invoice({merchant: {{ $ctrl.merchant.id }}, invoice: {{ x.id }}})" class="btn btn-success"><i class="fa fa-angle-double-right" aria-hidden="true"></i></a>
StateProvider:
$stateProvider.state('auth.invoice', {
url: '/invoice/:merchant/:invoice',
component: 'invoiceComponent'
});
我想将ui-sref与多个参数一起使用,这应该是可能的。
答案 0 :(得分:1)
由于{{$ ctrl.merchant.id}}和{{x.id}}未向其中返回任何值,并且对象语法失败,因此出现错误。检查未在此处连接的控制器。