在laravel 4中POST请求外部

时间:2013-08-25 19:50:23

标签: php laravel laravel-4

我正在尝试将数据从移动应用注册到服务器层。

通过Ajax post执行时只发生500错误。

以下是我的使用方式。

路线:

Route::post('sendmobile', function() {

   echo serialize(Input::get('json')); 

});

App mobile:

 $.ajax({
                type: "post",
                url: "http://host/sendmobile/",
                data: { name:'Marcelo', number:'11' },
                dataType: "json",
                success: function(){
                   alert("Success!");
                   return true;
                },

                complete: function() {
            alert('Finish');
                },

                error: function() {
                  alert('faild');
                  return false;
                }
             });

韩国社交协会

0 个答案:

没有答案