所以我正在按照指南学习Riot JS。举例说明一步一步。 并添加“this.update()”来更新防暴js变量。现在,这对他有用,但不适合我。你们能告诉我为什么吗?
这是代码。
这是index.html
<body>
<script src="bower_components/riot/riot.min.js" type="text/javascript"></script>
<script src="tags/all.js" type="text/javascript"></script>
<contact-list></contact-list>
<script>
riot.mount('contact-list', {callback: tagCallback});
function tagCallback(theTag) {
console.log('callback executed');
var request = new XMLHttpRequest();
request.open('GET', 'people.json', true);
request.onload = function() {
if(request.status == 200) {
var data = JSON.parse(request.responseText);
console.log(data);
theTag.trigger('data_loaded', data);
}
}
setTimeout(function() {
request.send();
},2000);
}
</script>
</body>
这是我的contact-list.tag
<contact-list>
<h1>Contacts</h1>
<ul>
<li each={p in opts.people}>{p.first} {p.last}</li>
</ul>
<script>
this.on('mount', function() {
console.log('Riot mount event fired');
opts.callback(this);
})
this.on('data_loaded', function(peeps) {
console.log(peeps);
opts.people = peeps;
this.update();
})
</script>
</contact-list>
使用console.logs调试后,我可以看到我正在从我的JSON文件中正确检索数据,我的联系人列表数据就在那里。但是子弹列表没有更新。它显示为空。
答案 0 :(得分:1)
使用回调函数有什么理由吗?
如果没有,请将回调函数移动到标记中,并在将获取的数据分配给标记变量后直接更新。
看看riotgear的消息来源: https://github.com/RiotGear/rg/blob/master/tags/rg-include/rg-include.tag
对我而言,这是一个完美的例子。
答案 1 :(得分:-3)
哦,没关系,伙计们。不知道视频中的那个人的例子究竟是如何起作用的。因为我必须在html触发事件上传递data.people。否则我正在传递一个带有数组的平面对象。