1

我正在使用带有 Meteor 的 Dragula。

当模板被渲染时,我只是初始化了dragula

Template.list.onRendered( function () {
  this.drake = dragula( [ this.find( 'ul' ) ] );
} );

我的模板只包含一个简单的列表

<template name="list">
  <ul>
    {{#each this}}
      <li>{{text}}</li>
    {{/each}}
  </ul>
</template>

但是当试图拖动时,我得到了错误

Uncaught TypeError: Cannot read property 'appendChild' of null  [dragula.js:426]

Uncaught TypeError: Cannot read property 'className' of null  [classes.js:27]
4

0 回答 0