调用db.collection.doc显示Error: errCode: -401003?
发布于 7 年前 作者 vkang 2197 次浏览 来自 官方Issues

console.log(rdata.data[0]._id)//打印输出_id

await db.collection(‘renyuan’).doc(rdata.data[0]._id).update({

icon: iurl

})

//输出错误:Uncaught (in promise) Error: errCode: -401003 api parameter type error | errMsg: parameter.data should be object instead of undefined;

1 回复

看文档要仔细

update({

    data:{

        icon: iurl

    }

})

回到顶部