我尝试过使用$ state但没有任何反应。我是棱角分明的
$http({
method:'PUT',
url: '/api/resources,
data:dataObject,
headers: {'Content-Type': 'application/json'}
}).success(function(data, status, headers, config){
AppAlert.add('success', 'The appointment was updated successfully.', 5000);
$state.go('.', {}, {reload: true});
答案 0 :(得分:3)
答案 1 :(得分:1)
您似乎正在使用ui-router
,因此您想要使用
$state.transitionTo($state.current, $stateParams, {
reload: true,
inherit: false,
notify: true
});