【发布时间】:2017-11-23 08:45:21
【问题描述】:
Vue 中是否存在在元素重新渲染后触发的事件?我有一个更新的对象,这会导致我的模板更新。更新后我想触发一个运行 jQuery 函数的事件。代码如下所示:
template: `
<div class="undo-margin">
<div class="gradient">
<img v-bind:src="blogPost.thumbnail"/>
<h1 class="align-bottom">{{blogPost.title}}</h1>
</div>
<div class="container bg-faded">
<article v-html="blogPost.article"></article>
</div>
</div>
`,
props: ["blogid"],
data: function () {
return blogPageData;
},
mounted: function () {
const blogid = jQuery("#blogPage").attr("blogid");
if (this.authdata.roles.indexOf("Administrator") !== -1) {
this.isAdmin = true;
}
this.getBlogPost(blogid);
},
methods: {
getBlogPost: function (blogid) {
var element = this;
$.ajax({
url: `/api/blog/${blogid}`,
type: "get",
headers: headers,
success: function (data) {
if (data === undefined) {
window.location.replace("/blog");
} else {
element.isDetails = true;
element.blogPost = data;
}
},
error: function (data) {
window.location.replace("/blog");
errorData.error = data.responseText;
}
});
}
},
watch: {
blogPost: function () {
console.log(this.blogPost);
jQuery("pre").each((i, e) => {
hljs.highlightBlock(e);
});
}
}
如您所见,我尝试使用 watch 事件,但是当 watch 事件触发时,我的页面还没有更新。然而 blogPost 已更改,但 vue 仍在渲染页面。我知道理论上我可以通过添加 setTimeout 来解决这个问题,但我更喜欢更干净的东西。
【问题讨论】:
标签: javascript jquery vuejs2