我已将bootstrapTable(https://github.com/wenzhixin/bootstrap-table)包装成指令,如下所示:
Vue.directive('bootstraptable', {
priority: 1000,
params: ['url', 'resource-name'],
bind: function () {
var _self = this;
$(this.el)
.bootstrapTable({
pagination: true,
pageSize: 15,
pageList: [],
sidePagination: 'server',
url: this.params.url,
queryParams: function (params) {
return params;
},
cookie: true,
cookieExpire: '24h',
cookieIdTable: this.params.resourceName + '-table',
locale: 'it-IT'
}).on('load-success.bs.table', function (e, data) {
$('[data-toggle="tooltip"]').tooltip();
_self.vm.$compile(_self.vm.$el);
});
},
update: function (value) {
$(this.el).val(value)
},
unbind: function () {
$(this.el).off().bootstrapTable('destroy')
}
});
从服务器返回的JSON包含一个带有v-on指令的按钮,因此我必须重新编译注入的HTML行以使按钮指令正常工作。 无论如何,似乎以下代码不起作用:
_self.vm.$compile(_self.vm.$el);
我错过了一些明显的东西吗?
答案 0 :(得分:3)
需要在必须编译的元素上调用$ compile方法,而不是在vm根元素上调用。
我换了一行:
_self.vm.$compile(_self.vm.$el);
使用:
_.each($('[recompile]'), function(el){
_self.vm.$compile(el);
});
并将属性“recompile”添加到需要重新编译的所有HTML元素中。
这似乎按预期工作,如果有更传统的方法,请毫不犹豫地回答。