提交 68206d23 authored 作者: 姚鑫国's avatar 姚鑫国

优化getSetKeyValue方法

上级 66222046
...@@ -683,7 +683,6 @@ export function getListWord({ ...@@ -683,7 +683,6 @@ export function getListWord({
files:JSON.stringify(files) files:JSON.stringify(files)
}); });
}); });
let getFileData = giveFilePostDataInfoForTrue( let getFileData = giveFilePostDataInfoForTrue(
{ {
templatePath: templatePath, templatePath: templatePath,
...@@ -744,6 +743,7 @@ function setObjectKey(data) { ...@@ -744,6 +743,7 @@ function setObjectKey(data) {
export function upObjKey(obj, setKey = {},defaultValue="") { export function upObjKey(obj, setKey = {},defaultValue="") {
try { try {
obj = deepCopy(obj); obj = deepCopy(obj);
setKey = deepCopy(setKey);
let objType = Object.prototype.toString.call(obj); let objType = Object.prototype.toString.call(obj);
if (obj && (objType.indexOf("Array") > -1 || objType.indexOf("Object") > -1) && Object.keys(setKey).length > 0) { if (obj && (objType.indexOf("Array") > -1 || objType.indexOf("Object") > -1) && Object.keys(setKey).length > 0) {
if (objType === "[object Object]" && Object.keys(obj).length > 0) { if (objType === "[object Object]" && Object.keys(obj).length > 0) {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论