我可以使用Post函数发布数据,并且可以完美运行。但是我无法从数据库中获取数据。我不知道该如何解决。有人可以帮忙吗?
这是我在查看页面中的get函数。
var app = new Vue({
el: '#app',
data: {
message: '',
infos: [],
info: {
id: 0,
cv_id: window.Laravel.idExperience,
titre: '',
body: '',
},
},
methods: {
getExperiences: function () {
axios.get(window.Laravel.url + '/getexperiences/' + window.Laravel.idExperience)
.then(response => {
console.log(reponse.data);
this.infos = response.data;
})
.catch(error => {
console.log('errors: ', error);
})
},
我在控制器中的get函数
public function getExperiences($id){
$cv= Cv::find($id);
return $cv->infos;
}
In my Devtool there is no object in Infos. it's empty until i post data using my post funstion.
提前谢谢!