gpt4 book ai didi

javascript - Riotjs 中的 Ajax 异步获取请求

转载 作者:行者123 更新时间:2023-11-28 18:15:23 24 4
gpt4 key购买 nike

我无法让我的代码处理异步获取请求。我想加载通过 GET 请求在文件 todo.tag.html 的表中获取的 JSON 对象。我的问题是如何传递参数。我想将参数传递给我的防暴标签,但我不知道如何。我在标签中尝试了 every="{ allTodos() }"。如果我设置 async:false 但不是 async true,则此方法实际上有效。allTodos 是获取 JSON 对象的方法。有人知道我能做什么吗?这是我的(简化的)代码索引.html:

 <!DOCTYPE html>
<head>

<link rel="stylesheet" type="text/css" href="./jquery-ui.css">
<link rel="stylesheet" type="text/css" href="./style.css">
<link rel="stylesheet" type="text/css" href="./stylesheet.css">
<script src="./jquery-1.12.4.js"></script>
<script src="./jquery-ui.js"></script>

</head>
<body>

<script src="js/riot+compiler.min.js"></script>
<script type="riot/tag" src="todo-form.tag.html"></script>
<script type="riot/tag" src="todo.tag.html"></script>
</script>
<script>riot.mount('todoForm');</script>
<form>
<todo-form><todo-form>
<form>
</body>
</html>

tod​​o.tag.html:

<todo>
<table style="width:100%">
<tr>
<td><label><input type="checkbox" checked={ done }> { title }</label> </td>
<td><p>{ due_date } <button type="button">Delete</button></p></td>
</tr>

</table>


</todo>

tod​​o-form.tag.html

<todo-form>


<fieldset class="Issues">
<legend>Issues</legend>
<ul>
<todo each="{ allTodos() }"> </todo> // This here is the problem
</ul>
</fieldset>


<script>

// return all todos
allTodos(){
var test = [];

var url = 'http://myurl.com/projects'; //random adress

$.ajax({
url: url,
type: "GET",
dataType: "json",
contentType: "application/json; charset=utf-8",
success: function(data) {
test = data;
}
});

return test;
}
</script>

</todo-form>

这就是我的 JSON 对象的样子

[
{

"done": true,
"title": "tests",
"due_date": "2016-11-20T23:00:00.000Z"
},
{

"done": true,
"title": "tests2",
"due_date": "2016-11-20T23:00:00.000Z"
}
]

最佳答案

对于标签通信,您可以在标签中发送参数,然后在子标签中使用 opts 对象。 (如果您需要的话,这里有一个关于标签通信的教程http://vitomd.com/blog/coding/tag-communication-in-riot-js-part-1/)

这是一个示例(删除异步功能,因为这是另一个问题)正如您所看到的,我使用“todo in todos”来获取当前记录的引用,然后将一个名为 t 的参数与该记录一起传递。

<todo each="{ todo in todos }" t={todo} > </todo>

然后在 todo 标记中,我使用 opts 和 t 作为参数来访问记录。

{ opts.t.due_date }

我还使用了 on('mount') ,它将在安装标签时执行,并使用 this.update() 来强制更新。和 self= this 来维护上下文

var self = this
this.todos = []
this.on('mount', function(){
self.todos = self.allTodos()
self.update()
})

这是简化的代码

<todo-form>
<fieldset>
<legend>Issues</legend>
<ul>
<todo each="{ todo in todos }" t={todo} > </todo>
</ul>
</fieldset>

<script>
var self = this
this.todos = []
this.on('mount', function(){
self.todos = self.allTodos()
self.update()
})
allTodos(){
var test = [{done:'true', due_date:'11', title:'the title'}, {done:'true', due_date:'11', title:'the title'}]
return test
}
</script>
</todo-form>

<todo>
<table>
<tr>
<td><label><input type="checkbox" checked={ opts.t.done }> { opts.t.title }</label> </td>
<td><p>{ opts.t.due_date } <button type="button">Delete</button></p></td>
</tr>
</table>
</todo>

http://plnkr.co/edit/PqLFIduigsOYd2XQ5LWv?p=preview

关于异步函数,我认为您可以在成功回调函数中调用 self.update() 来重新呈现待办事项并将数据分配给self.todos = 数据

var self = this
allTodos(){
var url = 'http://myurl.com/projects'; //random adress
$.ajax({
url: url,
type: "GET",
dataType: "json",
contentType: "application/json; charset=utf-8",
success: function(data) {
self.todos = data
self.update()
}
});
}

关于javascript - Riotjs 中的 Ajax 异步获取请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40820448/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com