You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
function html() {
var data = {
name: 'soda',
info: {
version: '2.0'
}
}
var text=soda("{{info.version}}", data);
}
var time=setInterval(function () {
html()
},100)
The text was updated successfully, but these errors were encountered:
如果需要频繁更新文本内容,在一些轮询场景中,会出现内存泄漏,以下为测试代码,在电脑上跑5分钟,内存直线上升
function html() {
var data = {
name: 'soda',
info: {
version: '2.0'
}
}
var text=soda("{{info.version}}", data);
}
var time=setInterval(function () {
html()
},100)
The text was updated successfully, but these errors were encountered: