gpt4 book ai didi

javascript - icanhaz/mustache 循环(遍历元素)js 错误

转载 作者:行者123 更新时间:2023-12-02 18:52:52 24 4
gpt4 key购买 nike

我正在尝试让 icanhaz/mustache 循环正常工作,如 answer 中定义的那样我在浏览器控制台中收到以下错误:

Uncaught Error: Syntax error, unrecognized expression: <option value="1">First</option>
<option value="2">Second</option>

不知道为什么。我刚刚发现这是导致问题的行:

ich.myTemplate(listOfStuff);

这是我的整个代码:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/tr/html4/transitional.dtd">
<html>
<head>
<title>icanhaz.js demo</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js" ></script>
<script type="text/javascript" src="https://raw.github.com/HenrikJoreteg/ICanHaz.js/master/ICanHaz.js"></script>
</head>
<body>

<select id="mySelectBox">
</select>

<script id="myTemplate" type="text/html">
{{#stuff}}
<option value="{{key}}">{{desc}}</option>
{{/stuff}}
</script>

<script>
$(document).ready( function() {

var listOfStuff = {stuff: [
{key: "1", desc: "First"},
{key: "2", desc: "Second"}
]};
var x = ich.myTemplate(listOfStuff);
$("#mySelectBox").append(x);
});
</script>

</body>
</html>

感谢您的建议!

最佳答案

终于发现错误了。这是 jquery 版本问题 - 1.9.1 返回错误,而 1.8.3 则没有。比较这些演示:

对于 1.9.1 版本,请查看 javascript 控制台。

而且,如果我改变了

<script id="myTemplate" type="text/html">
{{#stuff}}
<option value="{{key}}">{{desc}}</option>
{{/stuff}}
</script>

<script id="myTemplate" type="text/html">
{{#stuff}}<option value="{{key}}">{{desc}}</option>{{/stuff}}
</script>

对于 1.9.1,它也运行得很好。

<小时/>

编辑:这是一个打开的 issue on icanhaz/github 。如果您愿意,请帮助修复此错误!

关于javascript - icanhaz/mustache 循环(遍历元素)js 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15650487/

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