我很高兴vue,我试图将我的laravel项目的前端迁移到vue但是我遇到了问题,我试图遍历一系列提供的对象称为房间,并为我的组件中的每个创建div,并将默认的room_id设置为房间的第一个id。问题是何时访问提供的名为“房间”的道具阵列。在dom(html)中它可以完美地工作,但在我的组件文件的vue代码中,它似乎总是未定义或为空 这是我的组件vue代码:
export default {
created() {
//this.loadMessages(this.room_id)
console.log(this.first_room) //undefined;
console.log(this.rooms) //empty array;
},
props: ['rooms','first_room'],
computes:{
myrooms: function(){
return this.first_room;
}
},
data()
{
return{
messages: [],
newMessage: '',
room_id: 1 //for test purposes, this works,
}
},
methods: {
loadMessages(id)
{
axios.get('/messages/'+id).then(response => {
this.messages = response.data;
console.log(response.data);
});
}
}
}
组件html的重要部分
<div v-for="room in rooms">
<div class="chat-user room">
<div v-for="other in room.others">
<img class="chat-avatar img-circle" :src="other.image" alt="image" >
<div class="chat-user-name">
<a :href="'/user/' + other.id">{{ other.name}}</a>
</div>
</div>
</div>
</div>
//this all works, just for reference
方法,我在主vue实例中设置传递给prop的值
编辑:家长实施代码 哦,我似乎无法访问传递的房间数组,因为它总是空的IN代码,但它循环在HTML
window.App.app= new Vue({
el: '#wrapper',
data: {
messages: [],
rooms: [],
test: 'yes',
first: ''
},
created() {
this.fetchRooms();
this.first = 1;
},
methods: {
fetchMessages(id) {
console.log(id);
},
fetchRooms()
{
axios.get('/rooms').then(response => {
this.rooms = response.data;
});
}
}
});
最后我调用我的组件
<chat-messages :rooms="rooms" :first_room="1"></chat-messages>
//variables referenced from main vue instance
我的大部分头发都在这上面,请任何帮助表示赞赏
答案 0 :(得分:4)
在传递道具的子组件中。
export default {
created() {
console.log(this.first_room) //undefined;
},
props: ['rooms','first_room'],
computed :{
myrooms: function(){
return this.first_room;
}
},
data () {
return {
messages: [],
newMessage: '',
room_id: 1 //for test purposes, this works,
}
},
watch: {
rooms (n, o) {
console.log(n, o) // n is the new value, o is the old value.
}
},
methods: {
loadMessages (id) {
axios.get('/messages/'+id).then(response => {
this.messages = response.data;
console.log(response.data);
});
}
}
}
您可以在数据属性上添加监视或计算以查看其值的更改。
在问题中,(就像看起来一样),你console
生命周期中道具的价值created
,道具&#39;在创建子组件之后,父组件中的API调用会更改值。这就解释了为什么您的模板显示数据但不在创建的生命周期钩子中的console
中。