社区里有人说基础库在2.9.4以上就行,我用的基础库都已经2.13.0了,但还是没有serviceMarket对象。强行使用报错,请问是什么原因?
doMsgSecCheck: function (content) {
console.log(content)
var d = Date.now()
wx.serviceMarket.invokeService({
service: 'wxee446d7507c68b11',
api: 'msgSecCheck',
data: {
"Action": "TextApproval",
"Text": content
},
}).then(res => {
console.log(JSON.stringify(res))
wx.showModal({
title: 'cost',
content: (Date.now() - d) + ' ',
})
})
}
你好