0

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

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

  下面是我的使用方法。

路线:

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

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

});

手机应用:

 $.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;
                }
             });

谢了。

4

0 回答 0