doomiwork 4.1.6 → 4.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/core/controller.js +1 -1
- package/package.json +1 -1
package/core/controller.js
CHANGED
|
@@ -182,7 +182,7 @@ class controller {
|
|
|
182
182
|
*/
|
|
183
183
|
async getListData(req, dataKey, configFile = 0) {
|
|
184
184
|
if (this.logger) this.logger.trace("准备获取dataconfig文件中对应的 %s list数据",dataKey)
|
|
185
|
-
const listinfo = getListInfo(req, dataKey, configFile, this._daoModel
|
|
185
|
+
const listinfo = getListInfo(req, dataKey, configFile, this._daoModel); //, ignorefilter==1
|
|
186
186
|
if (!listinfo) return { successed: false, errcode: -10, errmsg:`缺失${dataKey}对应的查询语句`};
|
|
187
187
|
|
|
188
188
|
////直接操作数据库之前,可由子类再次Handler
|