如何使用$ http_post AngularJS + Laravel重定向?

时间:2015-01-12 21:47:44

标签: javascript angularjs laravel

今天早上我发现了$ http_method,太棒了!但是......我有另外一个问题XD

首先我正确发送内容并正确更新DataBasae但是当我尝试使用以下代码更新网站时出现错误。

 $timeout(function() {
                $location.path('/');
              });

我的代码就是这个

$scope.processForm = function() {
                $http({
                    method  : 'POST',
                    url     : 'todos',
                    data    : $.param($scope.formData),  // pass in data as strings
                    headers : { 'Content-Type': 'application/x-www-form-urlencoded' }  // set the headers so angular passing info as form data (not request payload)
                })                
            };

Laravel中我的文件route.php中的控制器是下一个:

Route::post('todos', function()
    {
        $user = new Nodes;
        $user->name = Input::get("name");
        $user->save();

    });

当我发送表单中的内容时,我不知道如何更新网页...有关此问题的任何解决方案?

1 个答案:

答案 0 :(得分:0)

在你的控制器中,让你注入$ location作为服务依赖项,然后添加一个then函数来确定服务器响应成功时会发生什么

app.controller('ctrlName', ['$scope', '$location', function($scope, $location){
    $scope.processForm = function() {
            $http({
                method  : 'POST',
                url     : 'todos',
                data    : $.param($scope.formData),  // pass in data as strings
                headers : { 'Content-Type': 'application/x-www-form-urlencoded' }  // set the headers so angular passing info as form data (not request payload)
            }).then(function(response){
                //successfully posted data
                $location.path('/');
            }, function(response){
                //error has occurred
            })                
        }; 

}])