提交 937e18bf 编写于 作者: D DCloud_MQ

修复 代码错误导致云端扩展框架缓存无效的问题

上级 55b80ed0
......@@ -200,7 +200,8 @@ let _registeredExtensionPointsPromise
* @returns {any[]} 该扩展点上挂接的所有扩展程序各自的返回值拼装在一个数组里。
*/
async function invokeExts(extensionPointName, ...args) {
isFsWritable = (uniCloud.getCloudInfos().provider === 'aliyun')
const [{ provider }] = uniCloud.getCloudInfos()
isFsWritable = (provider === 'aliyun')
// 尝试从生成的缓存文件中加载
let registeredExtensionPoints
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册