公告板
版本库
filestore
活动
搜索
登录
main
/
RRPatentMonitorH5
仁软宝库-专利监控系统H5
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
初始代码
hailu
2023-05-25
3644568ac3b6db7e387d5ab72da717e51626f869
[RRPatentMonitorH5.git]
/
uni_modules
/
u-ajax
/
js_sdk
/
lib
/
helpers
/
isCallback.js
1
2
3
4
5
6
7
8
/**
* 判断参数是否含有回调参数 success / fail / complete 之一
* @param {string} field 参数的 Key 值字符串
* @returns {boolean} 返回判断值
*/
export default function isCallback(field) {
return ['success', 'fail', 'complete'].includes(field)
}