Commit 391d738e authored by 何虹's avatar 何虹 💬

优化

parent 16ab227d
...@@ -157,9 +157,16 @@ class Root { ...@@ -157,9 +157,16 @@ class Root {
if (aixosCtx.params && aixosCtx.params.token) delete aixosCtx.params.token if (aixosCtx.params && aixosCtx.params.token) delete aixosCtx.params.token
if (aixosCtx.params && aixosCtx.params._user_info) delete aixosCtx.params._user_info if (aixosCtx.params && aixosCtx.params._user_info) delete aixosCtx.params._user_info
// 给问号参数加上db_name,逻辑是 session中没有 就去取url上的 // 给问号参数加上db_name,逻辑是 session中没有 就去取url上的
if (aixosCtx.params&&!aixosCtx.params.db_name) { if (!aixosCtx.params) {// 问号参数不存在时加一个参数
aixosCtx.params = {
db_name: this.getDbName()
}
} else {
if (aixosCtx.params && !aixosCtx.params.db_name) {
aixosCtx.params.db_name = this.getDbName() aixosCtx.params.db_name = this.getDbName()
} }
}
data && (aixosCtx.data = data) data && (aixosCtx.data = data)
headers && (aixosCtx.headers = headers) headers && (aixosCtx.headers = headers)
const result = this.axios(aixosCtx) const result = this.axios(aixosCtx)
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -79,9 +79,16 @@ class Root { ...@@ -79,9 +79,16 @@ class Root {
if (aixosCtx.params && aixosCtx.params.token) delete aixosCtx.params.token if (aixosCtx.params && aixosCtx.params.token) delete aixosCtx.params.token
if (aixosCtx.params && aixosCtx.params._user_info) delete aixosCtx.params._user_info if (aixosCtx.params && aixosCtx.params._user_info) delete aixosCtx.params._user_info
// 给问号参数加上db_name,逻辑是 session中没有 就去取url上的 // 给问号参数加上db_name,逻辑是 session中没有 就去取url上的
if (aixosCtx.params&&!aixosCtx.params.db_name) { if (!aixosCtx.params) {// 问号参数不存在时加一个参数
aixosCtx.params = {
db_name: this.getDbName()
}
} else {
if (aixosCtx.params && !aixosCtx.params.db_name) {
aixosCtx.params.db_name = this.getDbName() aixosCtx.params.db_name = this.getDbName()
} }
}
data && (aixosCtx.data = data) data && (aixosCtx.data = data)
headers && (aixosCtx.headers = headers) headers && (aixosCtx.headers = headers)
const result = this.axios(aixosCtx) const result = this.axios(aixosCtx)
......
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