AngularJS のスコープと場所に問題があります。例を次に示します。
function CreateAccountCtrl($scope, $http, $location) {
...
$http.post(url,$scope.form).
success(function(data){
$location.path('/'); // I need to transfert data to the location
}
}
私の問題は次のとおりです。データを/コントローラーに転送したいのですが、rootScopeを使用することを考えましたが、これが最善の方法だとは思いません。
何か案が ?