Commit 4b7360dd authored by 何虹's avatar 何虹 💬

给问号参数加上db_name,逻辑是 session中没有 就去取url上的

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