我创建了一个vue组件,它有一个初始的ajax调用,用于获取我将循环遍历的对象数组。有没有办法将这些对象定义/转换为另一个vue组件?这是我到目前为止所得到的:
var myComponent = Vue.extend({
template: '#my-component',
created: function() {
this.$http
.get('/get_objects')
.then(function(data_array) {
for (var i = 0; i < data_array.data.length; i++) {
var item = data_array.data[i];
// <<-- How do i tell vue to cast another component type here??
}
}
);
}
});
Vue.component('my-component', myComponent);
new Vue({
el: 'body',
});
答案 0 :(得分:14)
为了完整起见,我会在这里将答案发给我自己的问题。
所有功劳归于Joseph Silber和Jeff
来自main.js的代码
var myComponent = Vue.extend({
template: '#my-component',
data: function() {
return {
objects: []
}
},
created: function() {
this.$http
.get('/get_objects')
.then(function(objects) {
this.objects = objects.data;
}
);
}
});
var myComponentChild = Vue.extend({
template: '#my-component-child',
props: ['item'],
data: function() {
return {
item: {}
}
}
});
Vue.component('my-component', myComponent);
Vue.component('my-component-child', myComponentChild);
new Vue({
el: 'body',
});
index.html的代码
<my-component></my-component>
<template id="my-component">
<table>
<thead>
<tr>
<th>Name</th>
<th>URL</th>
</tr>
</thead>
<tbody>
<tr is="my-component-child" v-for="item in objects" :item="item"></tr>
</tbody>
</table>
</template>
<template id="my-component-child">
<tr>
<td></td>
<td>{{ item.name }}</td>
<td>{{ item.url }}</td>
</tr>
</template>