在按钮上单击我正在调用这样的函数
<a href="#" ng-click="submit()">Submit</a>
我的控制器代码是这样的
$scope.submit = function(){
$state.go('app.calendar');
}
此代码将我带到日历页面。但在该页面应该重新加载。任何人都可以帮助我..
答案 0 :(得分:2)
使用此::
$scope.submit = function(){
$location.path('/calendar'); //need to add the path of calendar page
}
答案 1 :(得分:0)
您正在寻找
$state.go('app.calendar', {}, {reload: true})