suchen

Heim  >  Fragen und Antworten  >  Hauptteil

php – Die Get-Anfrage von vue-resource kann keine Parameter senden

Bei Verwendung des Vue-Frameworks mit Vue-Ressource wird der Code unten veröffentlicht. Alles ist normal. Sie können jedoch keine Parameter mit get übergeben (Der von PHP empfangene Parameter ist null), bitte helfen Sie ...

js Teil:

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

php-Teil:

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

天蓬老师天蓬老师2756 Tage vor1015

Antworte allen(2)Ich werde antworten

  • 扔个三星炸死你

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

    vue GET传递参数要加上params

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

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

    Antwort
    0
  • 阿神

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

    建议使用 axios

    Antwort
    0
  • StornierenAntwort