我在我的.html文件中使用这个,但是它无效。
<p>State is {{state.current.name}}</p>
在controller.js中,我能够得到它。 但我想在html文件中得到它。 任何人都可以帮助我。
答案 0 :(得分:3)
在控制器中将状态分配给变量
$scope.state = $state;
现在您可以在HTML中访问它。
<p>State is {{state.current.name}}</p>
确保将$state
注入控制器。