Commit c2b54ee1 by 宋毅

tj

parent 429887e3
...@@ -114,7 +114,7 @@ class AppServiceBase { ...@@ -114,7 +114,7 @@ class AppServiceBase {
} }
for (let k = 0; k < keys.length; k++) { for (let k = 0; k < keys.length; k++) {
const tKey = keys[k]; const tKey = keys[k];
if (tKey != "sign" && params[tKey] && !(params[tKey] instanceof Array)) { if (tKey != "sign" && params[tKey] && !(typeof (params[tKey]) === "object")) {
signArr.push(tKey + "=" + params[tKey]); signArr.push(tKey + "=" + params[tKey]);
} }
} }
...@@ -144,7 +144,7 @@ class AppServiceBase { ...@@ -144,7 +144,7 @@ class AppServiceBase {
} }
for (let k = 0; k < keys.length; k++) { for (let k = 0; k < keys.length; k++) {
const tKey = keys[k]; const tKey = keys[k];
if (tKey != "sign" && params[tKey] && !(params[tKey] instanceof Array)) { if (tKey != "sign" && params[tKey] && !(typeof (params[tKey]) === "object")) {
signArr.push(tKey + "=" + params[tKey]); signArr.push(tKey + "=" + params[tKey]);
} }
} }
......
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