我在qjeury ajax事件成功时尝试使用$ location服务。
我似乎无法找到一种方法来使用该服务,然后在控制器中使用它,而我只在完成ajax查询成功时才使用控制器。
我不知道该如何做到这一点,我一直试图解决这个问题几个小时,但无法找到解决方案。
这是我的代码
$.post('#',selectedOrderMethod).done(function(){
//Won't work because my ng-controller directive is looking a controller that doesn't exist
myApp.controller("myCtrl",function($scope,$location){
$location.path('/basemenu');
});
});