点击右上角【Star】收藏本软件 ^_^

This commit is contained in:
thinkgem
2021-09-03 18:25:31 +08:00
parent bcebcdedc6
commit 572b529cf3
2 changed files with 24 additions and 11 deletions

View File

@@ -45,7 +45,7 @@ JeeSite 是一个低代码开发平台,具有较高的封装度、扩展性,
**发展至今 JeeSite 平台架构已经非常稳定JeeSite 是一个专业的平台,是一个让你使用放心的平台。**
### v4 架构特点、安全方面等等的优势:<http://jeesite.com/docs/feature/>
### v4 架构特点、安全方面等等的优势:<https://jeesite.com/docs/feature/>
## 技术选型
@@ -58,7 +58,7 @@ JeeSite 是一个低代码开发平台,具有较高的封装度、扩展性,
## 更多介绍
* 内置功能:<http://jeesite.com/docs/function/>
* 内置功能:<https://jeesite.com/docs/function/>
* 目录结构:<https://jeesite.com/docs/catalog/>
* 架构特点:<https://jeesite.com/docs/feature/>
* 开发规范:<https://jeesite.com/docs/standard/>

View File

@@ -6759,15 +6759,28 @@ var fillCharReg = new RegExp(domUtils.fillChar, 'g');
langReadied(me);
}else{
utils.loadFile(document, {
src: me.options.langPath + me.options.lang + "/" + me.options.lang + ".js",
tag: "script",
type: "text/javascript",
defer: "defer"
}, function () {
UE.plugin.load(me);
langReadied(me);
});
try {
utils.loadFile(document, {
src: me.options.langPath + me.options.lang + "/" + me.options.lang + ".js",
tag: "script",
type: "text/javascript",
defer: "defer"
}, function () {
UE.plugin.load(me);
langReadied(me);
});
}catch(e){
// 未找到语言时,使用默认语言
utils.loadFile(document, {
src: me.options.langPath + "zh_CN/zh_CN.js",
tag: "script",
type: "text/javascript",
defer: "defer"
}, function () {
UE.plugin.load(me);
langReadied(me);
});
}
}
UE.instants['ueditorInstant' + me.uid] = me;