我正在使用jQuery Datatables编写Ember应用程序。
我想从控制器发送动作刷新表,我使用了Ember组件入站动作。这是我的代码:
import Ember from 'ember';
import InboundActions from 'ember-component-inbound-actions/inbound-actions';
export default Ember.Component.extend(InboundActions,{
init() {
this._super(...arguments);
},
didInsertElement() {
var table = this.$('#example').DataTable({
var _this=this;
})
},
actions: {
check: function() {
this.table.ajax.reload( null, false );
}
},
});
结果是:
未捕获的TypeError:无法读取属性' ajax'未定义的
如何正确使用此操作重新加载数据表?