Commit 1417705e by liuyang

1.文档库目录过滤掉特殊符号

parent 44706a6e
......@@ -154,6 +154,11 @@ let save = function (btnNode) {
flag = false;
return false;
}
if(isChinese(fileName)){
message("选中的第"+(index+1)+"行\"目录名称\",不能包含特殊字符!");
flag = false;
return false;
}
});
if(flag) {
JSUtils.confirm("确定对勾选中的[" + rows.length + "]条数据做\"保存\"操作? ", {
......
......@@ -133,6 +133,11 @@ let save = function (btnNode) {
flag = false;
return false;
}
if(isChinese(fileName)){
message("选中的第"+(index+1)+"行\"目录名称\",不能包含特殊字符!");
flag = false;
return false;
}
});
if(flag) {
JSUtils.confirm("确定对勾选中的[" + rows.length + "]条数据做\"保存\"操作? ", {
......
......@@ -10,6 +10,17 @@ function isBlank(data) {
}
/**
* 是否为中文 不包含特殊字符
* @param str 字符串
* @returns {boolean} true:包含中文,false:不包含中文
*/
function isChinese(str){
let reg = /^[\u4e00-\u9fa5_a-zA-Z0-9]+$/;
return !reg.test(str);
}
/**
* 是否数字
*
* @param val
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment