赞
踩
(这里以我大学期间自研的微信小程序为例:南苑口袋)
效果图:
教程:
1.登录微信公众平台,,搜索评价组件,然后添加插件(需要申请,秒通过)
2.在uniapp中的manifest.json中添加以下代码,原生微信小程序的话在app.json中添加(在下面直接复制)
- "plugins": {
- "wxacommentplugin": {
- "version": "latest",
- "provider": "wx82e6ae1175f264fa"
- }
- }
3.选择想在什么地方弹出评价组件,可以自己选择(这里我演示《南苑口袋》小程序中,我的随机抽菜功能,点击事件10次之后触发)
- if (this.click > 10) {
- uni.showToast({
- title: '您已经换了10家,就它了!',
- icon: 'none'
- })
- this.value = false
- uni.showModal({
- title: '非常温馨的一个提示',
- content: '给作者一个五星好评吧!^0^',
- cancelText: '下次再吧',
- confirmText: '必须五星',
- success: function(res) {
- if (res.confirm) {
- var plugin = requirePlugin("wxacommentplugin");
- plugin.openComment({
- // wx_pay_id: '4200001729202306024807578', // 交易评价类账号选填
- success: (res) => {
- console.log('plugin.openComment success', res)
- },
- fail: (res) => {
- console.log('plugin.openComment fail', res)
- }
- })
- } else if (res.cancel) {
- console.log('用户点击取消');
- }
- }
- })
- }
「体验评价类账号」可以在小程序中适当的场景和时机通过「评价发布组件」向用户征求评价,但请确保不影响用户对小程序功能的正常使用。在30天内,每个小程序仅可向每个用户征求1次评价。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。