gpt4 book ai didi

javascript - Meteor onRendered 意外标记 =

转载 作者:行者123 更新时间:2023-11-28 00:24:35 26 4
gpt4 key购买 nike

在 Meteor 模板中使用 JQuery 插件时遇到问题。我试过this插件。

 <div id="listId">
<ul class="list">
// A bunch of items
</ul>
<ul class="pagination"></ul>
</div>

<script>
var options = {
valueNames: [ 'name', 'category' ],
page: 3,
plugins: [
ListPagination({})
]
};

var listObj = new List('listId', options);
</script>

我在 onRendered 中放入了 javascript 代码。

Template.MyTemplate.onRendered({
listObj = new List('listId', {
valueNames: [ 'name', 'category' ],
page: 3,
plugins: [
ListPagination({})
]
});`enter code here`
});

但是我收到错误。

MyTemplate.js:2:13: Unexpected token =

最佳答案

您正在将对象 ({}) 传递给 onRendered 函数:

Template.MyTemplate.onRendered({
listObj = new List('listId', {
valueNames: [ 'name', 'category' ],
page: 3,
plugins: [
ListPagination({})
]
});
});

您应该传递函数:

Template.MyTemplate.onRendered(function() {
listObj = new List('listId', {
valueNames: [ 'name', 'category' ],
page: 3,
plugins: [
ListPagination({})
]
});
});

关于javascript - Meteor onRendered 意外标记 =,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29670651/

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