From ade275c057b85432543acc0774a4fcdcc2900091 Mon Sep 17 00:00:00 2001 From: thinkgem Date: Tue, 24 Nov 2020 23:52:31 +0800 Subject: [PATCH] =?UTF-8?q?laytpl=20=E5=8E=BB=E6=8E=89=E6=97=A0=E7=94=A8?= =?UTF-8?q?=E7=9A=84=20console.log()?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- common/src/main/resources/static/common/laytpl.js | 1 - 1 file changed, 1 deletion(-) diff --git a/common/src/main/resources/static/common/laytpl.js b/common/src/main/resources/static/common/laytpl.js index c800e040..ea0d9d0c 100644 --- a/common/src/main/resources/static/common/laytpl.js +++ b/common/src/main/resources/static/common/laytpl.js @@ -90,7 +90,6 @@ Tpl.pt.render = function(data, callback){ var that = this, tpl; if(!data) return tool.error('no data'); tpl = that.cache ? that.cache(data, tool.escape) : that.parse(that.tpl, data); - console.log() if(!callback) return tpl; callback(tpl); };