Meteor onRendered Unexpected token =

时间:2015-04-16 09:30:09

标签: javascript jquery meteor meteor-helper

我遇到了在流星模板中使用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 =

1 个答案:

答案 0 :(得分:1)

您正在将对象({})传递给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({})
      ]
    });
});