云函数上传运行报错:errCode: InternalServerError | errMsg: 'KaTeX parse error: Expected '}', got 'EOF' at end of input: …ield like so: {addToSet: {: …}}
原来是配置测试参数的时候,打错了………………
const userinfo = await db.collection('user').doc(user_id).get()
let res = await db.collection('user').doc(user_id).update({
article_likes_ids:dbCmd.addToSet(article_id)
})
函数里是article_id,测试参数里是article,改一下就好了…………