标签: angular-meteor
我是Angular-Meteor的新手。我注意到我可以在构造函数方法中使用$state(作为param传递),但它不会在构造函数之外的方法中真正起作用。在构造函数方法之外使用它(如果)的正确方法是什么?
$state
答案 0 :(得分:0)
我的技巧是将它设置为this上类似命名的属性。
this
举个例子:
this.$state = $state;
然后,要在其他方法中访问它,您可以在整个课程中通过this.$state。
this.$state