vue定时执行函数方法
内部方法setInterval(函数,定时时间)5000是5秒,每5秒调一次接口methods: {// 测试函数testHtml() {console.log("测试")},mounted() {//定时任务方法this.$nextTick(() => {setInterval(this.testHtml, 5000);});},...
·
内部方法setInterval(函数,定时时间)
5000是5秒,每5秒调一次接口
methods: {
// 测试函数
testHtml() {
console.log("测试")
},
mounted() {
//定时任务方法
this.$nextTick(() => {
setInterval(this.testHtml, 5000);
});
},
更多推荐
已为社区贡献3条内容
所有评论(0)