WeChat Mini Programs Implement Star Rating

WeChat Mini Programs Implement Star Rating

This article shares the specific code for WeChat applet to implement star rating for your reference. The specific content is as follows

First method:

WXML code:

<view>
    Star rating</view>
 
<view>
 
    <block class="brightStars">
        <image data-index='0' data-no="{{item}}" wx:for="{{starsBox}}" bindtap="changePic" wx:key="index" src="{{flag[0]>=item? '../img/starFull.png' : '../img/star.png'}}"></image>
    </block>
    <view class="texts">{{startext[0]}}</view>
</view>

JS code:

Page({
    data: {
        flag: [0, 0, 0],
        startext: ['', '', '', ],
        starsBox: [1, 2, 3, 4, 5]
    },
 
    changePic: function (e) {
        var index = e.currentTarget.dataset.index;
        console.log(index,'-');
        var num = e.currentTarget.dataset.no;
        console.log(num);
        var a = 'flag[' + index + ']';
        console.log(a);
        var b = 'startext[' + index + ']';
        console.log(b);
        var that = this;
        if (num == 1) {
            that.setData({
                [a]: 1,
                [b]: 'Very dissatisfied'
            });
        } else if (num == 2) {
            that.setData({
                [a]: 2,
                [b]: 'unsatisfied'
            });
        } else if (num == 3) {
            that.setData({
                [a]: 3,
                [b]: 'General'
            });
        } else if (num == 4) {
            that.setData({
                [a]: 4,
                [b]: 'Satisfied'
            });
        } else if (num == 5) {
            that.setData({
                [a]: 5,
                [b]: 'Very satisfied'
            });
        }
    },
 
})

WXSS Code:

.container{
    display: flex;
    flex-direction: row;
    padding: 0;
    flex-wrap: nowrap;
    
}
 
image{
    width: 50px;
    height: 50px;
}

Second method:

WXML Content:

<view>Star Rating</view>
 
<block wx:for="{{starYesNum}}" wx:key="index">
  <image bindtap="selectStar" id='{{index+1}}' data-in='selectStarYes' src='../../static/img/starY.png'></image>
</block>
<block wx:for="{{starNoNum}}" wx:key="index">
  <image bindtap='selectStar' id='{{index+1}}' data-in='selectStarNo' src='../../static/img/starN.png'></image>
</block>
<view>{{starYesNum}} star</view>

The first block tag contains a box with a bright star. The second block tag contains a box without a bright star.

Star rating is achieved by changing the number of bright stars and the number of dark stars

JS code:

Page({
  data: {
    starYesNum:0, //Number of lit stars starNoNum:5, //Number of unlit stars},
 
  selectStar:function(e){
    console.log(e.target.id);
    console.log(e.currentTarget.dataset.in);
 
    //Judge whether the clicked star is a bright star or a dark star, and set it if(e.currentTarget.dataset.in == 'selectStarNo'){
      this.setData({
        starYesNum: Number(e.target.id) + Number(this.data.starYesNum), 
        starNoNum:5-Number(e.target.id) - Number(this.data.starYesNum)
      })
    }else{
      this.setData({
        starYesNum:Number(e.target.id ),
        starNoNum:Number(5-e.target.id)
      })
    }
  },
})

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • WeChat Mini Program implements star rating and display
  • WeChat applet realizes star rating effect
  • Implementation of WeChat applet dynamic rating display/five-pointed star display/half star display/custom length display function
  • WeChat applet implements the function of displaying rating results
  • The store rating component in the WeChat applet and the rating display component implemented with svg in vue
  • An example of implementing a five-star rating system for WeChat Mini Programs
  • WeChat applet five-star rating effect implementation code
  • WeChat applet five-star rating (including half-star rating) example code
  • WeChat applet uses template tag to implement five-star rating function
  • WeChat Mini Program implements star rating and display

<<:  Problems and experiences encountered in web development

>>:  CSS web page responsive layout to automatically adapt to PC/Pad/Phone devices

Recommend

What to do if you forget your mysql password

Solution to forgetting MySQL password: [root@loca...

Detailed explanation of TypeScript's basic types

Table of contents Boolean Type Number Types Strin...

Native JavaScript message board

This article shares the specific code of JavaScri...

Some common properties of CSS

CSS background: background:#00ffee; //Set the back...

How to install mysql via yum on centos7

1. Check whether MySQL is installed yum list inst...

Zabbix implements monitoring of multiple mysql processes

Three MySQL instance processes are started on one...

Restart all stopped Docker containers with one command

Restart all stopped Docker containers with one co...

JavaScript flow control (branching)

Table of contents 1. Process Control 2. Sequentia...

Summary of some common uses of refs in React

Table of contents What are Refs 1. String type Re...

html+css+js to realize the function of photo preview and upload picture

Preface: When we are making web pages, we often n...

Vue uses Baidu Maps to realize city positioning

This article shares the specific code of Vue usin...

Native js to achieve puzzle effect

This article shares the specific code of native j...

A brief discussion on the principle of js QR code scanning login

Table of contents The essence of QR code login Un...

Linux IO multiplexing epoll network programming

Preface This chapter uses basic Linux functions a...

Things You Don’t Know About the CSS ::before and ::after Pseudo-Elements

CSS has two pseudo-classes that are not commonly ...