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); }
vue GET传递参数要加上params
另外说一句,现在VUE官方推荐使用axios vue-resource不更新了
建议使用 axios