提交 ca8644f7 编写于 作者: fxy060608's avatar fxy060608

build:h5 and build:v3

上级 054269a0
...@@ -685,14 +685,18 @@ var serviceContext = (function () { ...@@ -685,14 +685,18 @@ var serviceContext = (function () {
const CONTEXT_API_RE = /^create|Manager$/; const CONTEXT_API_RE = /^create|Manager$/;
// Context例外情况
const CONTEXT_API_RE_EXC = ['createBLEConnection'];
const TASK_APIS = ['request', 'downloadFile', 'uploadFile', 'connectSocket']; const TASK_APIS = ['request', 'downloadFile', 'uploadFile', 'connectSocket'];
// 同步例外情况
const ASYNC_API = ['createBLEConnection']; const ASYNC_API = ['createBLEConnection'];
const CALLBACK_API_RE = /^on|^off/; const CALLBACK_API_RE = /^on|^off/;
function isContextApi (name) { function isContextApi (name) {
return CONTEXT_API_RE.test(name) return CONTEXT_API_RE.test(name) && CONTEXT_API_RE_EXC.indexOf(name) === -1
} }
function isSyncApi (name) { function isSyncApi (name) {
return SYNC_API_RE.test(name) && ASYNC_API.indexOf(name) === -1 return SYNC_API_RE.test(name) && ASYNC_API.indexOf(name) === -1
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册