php - vue-resource的get請求,發送不了參數
天蓬老师
天蓬老师 2017-06-29 10:08:18
0
2
997

使用vue框架,搭配vue-resource,程式碼貼在下面了,在登陸頁的介面是用的post請求,一切正常,可以傳參並且接收返回值,但是在這一頁用get一直傳不了參數(php接收到的參數是null),求救....

js部分:

this.$http.get('/operation/customer/question/edits',{id: 10}).then(response => {
    this.question = response.body.data;
},response => {
    this.error('连接错误');
})

php部分:

public function edits(Request $request){
    dd($request->all());  //这里在前台控制台返回的是接收到的参数,得到的结果一直为[]
    extract($request->all());
    $question=Question::find($id);
    return ApiHelper::Response(0,'success',$question);
}

##
天蓬老师
天蓬老师

欢迎选择我的课程,让我们一起见证您的进步~~

全部回覆(2)
扔个三星炸死你

vue GET傳遞參數要加上params

this.$http.get('/operation/customer/question/edits',{params:{id: 10}})

另外說一句,現在VUE官方推薦使用axios vue-resource不更新了

阿神

建議使用 axios

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板