操作指引
代码部分
首先在app.json里面引入「评价发布组件」
{
"plugins": {
"wxacommentplugin": {
"version": "latest",
"provider": "wx82e6ae1175f264fa"
}
}
}
注意:// 必须填该评价组件appid,该示例值即为评价组件appid(复制时请去掉注释)
在xxx.js页面代码中添加代码
// js代码:
gopingjia: function () {
var plugin = requirePlugin("wxacommentplugin");
plugin.openComment({
success: (res) => {
console.log('plugin.openComment success', res)
},
fail: (res) => {
console.log('plugin.openComment fail', res)
}
})
},
在xxx.wxml页面代码中添加代码
<button bindtap="gopingjia" style="margin-top: 50px;background-color: #ff4444;color: #fff;">
用户评价
</button>
完整源码包下载:
文章来源:https://www.toymoban.com/news/detail-774640.html
链接:https://pan.baidu.com/s/1OgrOJVMWSJn0G0J5ws3I_Q
提取码:88io文章来源地址https://www.toymoban.com/news/detail-774640.html
到了这里,关于小程序评价发布组件-写评论开启指南,附详细代码的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!