laravel 怎么使用ajax

总是给报 Method not allowed
已邀请:

daniel

赞同来自: niesheng

laravel5刚好弄了一个,供参考。
建议新手至少先弄通golaravel上入门的文章(一)和(二),否则理解比较困难
  1. HTML blade部分
    <meta name="_token" content="{{ csrf_token() }}"/>
  2. 前端js请求部分(注意那个header属性,是为了避免跨站伪造请求攻击写的)
    $.ajax({
    type: 'POST',
    url: '/ajax/create',
    data: { date : '2015-03-12'},
    dataType: 'json',
    headers: {
    'X-CSRF-TOKEN': $('meta[name="_token"]').attr('content')
    },
    success: function(data){
    console.log(data.status);
    },
    error: function(xhr, type){
    alert('Ajax error!')
    }
    });
  3. 路由部分route.php(ajax/create路由打到Controllers/Ajax/PollController.php的store方法上处理)

Route::group(['prefix' => 'ajax', 'namespace' => 'Ajax'], function(){
Route::post('create', 'PollController@store');
});

  1. 控制器方法PollController.php,

<?php namespace App\Http\Controllers\Ajax;

use App\Http\Requests;
use App\Http\Controllers\Controller;

use Illuminate\Http\Request;
use Illuminate\Http\Response;
use App\Poll;  // 用数据模型

use Redirect, Input, Auth, Log;

class PollController extends Controller {
public function store(Request $request)
{
    $poll = new Poll;

    $poll->date = Input::get('date');

    if ($poll->save()) {
        return response()->json(array(
            'status' => 1
            'msg' => 'ok',
        ));
    } else {
        return Redirect::back()->withInput()->withErrors('保存失败!');
    }
}
}

大概如此,多指正~

samhou1988

赞同来自:

在提交表单里增加如:<input name="_method" type="hidden" value="DELETE">的类似代码试一下

motecshine - 菜鸟

赞同来自:

Route 下 GET和POST方法是要区分的

douyasi

赞同来自:

ajax一般是结合前端JS来实现,可以查阅我的开源项目示例:
yascmf

chenhuiwang

赞同来自:

你的答案完美解决了我的疑惑!赞

赵狗胜 - 谢谢帮助过我的人!

赞同来自:

$("#submit").click(function(){
    var token = $('#token').val();
    var oldpassword = $('#oldpassword').val();
    var newpassword = $('#newpassword').val();
    var newpassword2 = $('#newpassword2').val();
    //alert(token);
    //alert(oldpassword);
    //alert(newpassword);
    //alert(newpassword2);
    //alert('submit');
    $.post('{{ action('UserController@resetpasswordHandle') }}', 
            { '_token': token ,'oldpassword': oldpassword, 
            'newpassword': newpassword, 'newpassword2':newpassword2 },
               function(data){
                 alert("Data Loaded: " + data);
               });
});

500的主要是忘记传这个_token了

要回复问题请先登录注册