搜索

首页  >  问答  >  正文

php - vue-resource的get请求,发送不了参数

使用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);
}

天蓬老师天蓬老师2739 天前999

全部回复(2)我来回复

  • 扔个三星炸死你

    扔个三星炸死你2017-06-29 10:10:18

    vue GET传递参数要加上params

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

    另外说一句,现在VUE官方推荐使用axios vue-resource不更新了

    回复
    0
  • 阿神

    阿神2017-06-29 10:10:18

    建议使用 axios

    回复
    0
  • 取消回复