使用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);
}
##
vue GET傳遞參數要加上params
另外說一句,現在VUE官方推薦使用axios vue-resource不更新了
建議使用 axios