我們知道菱农,許多外賣app都有評(píng)分的星星,這里我總結(jié)一下對(duì)評(píng)分組件的開發(fā)鉴竭,學(xué)習(xí)視頻:餓了么實(shí)戰(zhàn)(慕課網(wǎng))
1.html部分
<div class="star" :class="starType">
<span v-for="itemClass in itemClasses" :class="itemClass" class="star-item" track-by="$index"></span>
</div>
解釋
- 在大的div里綁定starType是因?yàn)樵谡麄€(gè)App中歧譬,有多個(gè)評(píng)分組件,而它們的大小不一樣搏存,所以根據(jù)大小動(dòng)態(tài)的綁定class.
同樣的原理瑰步,在上一節(jié)header組件開發(fā)中也有介紹,但直到寫到這里我開始漸漸明白vue.js中:class的意義璧眠。以前我想既然可以直接添加class缩焦,為什么要用綁定class來多此一舉。現(xiàn)在我明白的责静,基礎(chǔ)的樣式設(shè)定袁滥,直接添加class就可以了,但是有時(shí)候涉及到根據(jù)不同的狀態(tài)有不同的樣式時(shí)泰演,就要用綁定class了呻拌。
- v-for 這里我們沒有寫5個(gè)span,而是遍歷itemClasses睦焕,這是vue.js中的一種常用方法藐握。既減少了代碼,而且動(dòng)態(tài)獲取數(shù)據(jù)垃喊。
2.js部分
1. 得到評(píng)分?jǐn)?shù)據(jù)
像上一節(jié)一樣猾普,我們通過props來接收數(shù)據(jù)。我們要接收的是兩個(gè)number類型的數(shù)據(jù)本谜,一個(gè)是星星的尺寸初家,一個(gè)是分?jǐn)?shù)。
props: {
size:{
type:Number
},
score:{
type:Number
}
}
2.屬性的計(jì)算
1.接收size動(dòng)態(tài)綁定不同的class
starType() {
return 'star-'+this.size;
}
.star-48 {
width: 20px;
height: 20px;
margin-right: 22px;
background-size: 20px 20px;
}
.star-36 {
width: 15px;
height: 15px;
margin-right: 6px;
background-size: 15px 15px;
}
.star-24 {
width: 10px;
height: 10px;
margin-right: 3px;
background-size: 10px 10px;
}
2. 通過計(jì)算確定添加全星半星和無(wú)星
const LENGTH = 5;
const CLS_ON = 'on';
const CLS_HALF = 'half';
const CLS_OFF = 'off';
itemClasses() {
let result = [];
let score = Math.floor(this.score*2)/2;
let hasDecimal = score%1 !== 0;
let integer = Math.floor(score);
for (var i = 0; i < integer; i++) {
result.push(CLS_ON);
}
if(hasDecimal) {
result.push(CLS_HALF);
}
while (result.length<LENGTH) {
result.push(CLS_OFF);
}
return result;
}
這段代碼的思路是:創(chuàng)建一個(gè)數(shù)組儲(chǔ)存星星乌助,判斷分?jǐn)?shù)是否在.5以上溜在,將分?jǐn)?shù)取整,有多少分push幾個(gè)on星星進(jìn)去他托,有.5以上掖肋,push一個(gè)half,然后push進(jìn)off直到長(zhǎng)度達(dá)到5赏参。
3.css部分
以star-48的尺寸為例
.star-48 .on {
background-image: url('star48_on@2x.png')
}
.star-48 .half {
background-image: url('star48_half@2x.png')
}
.star-48 .off {
background-image: url('star48_off@2x.png')
}
4.完整代碼
<template>
<div class="star" :class="starType">
<span v-for="itemClass in itemClasses" :class="itemClass" class="star-item" track-by="$index"></span>
</div>
</template>
<script type="text/javascript">
const LENGTH = 5;
const CLS_ON = 'on';
const CLS_HALF = 'half';
const CLS_OFF = 'off';
export default {
props: {
size:{
type:Number
},
score:{
type:Number
}
},
computed:{
starType() {
return 'star-'+this.size;
},
itemClasses() {
let result = [];
let score = Math.floor(this.score*2)/2;
let hasDecimal = score%1 !== 0;
let integer = Math.floor(score);
for (var i = 0; i < integer; i++) {
result.push(CLS_ON);
}
if(hasDecimal) {
result.push(CLS_HALF);
}
while (result.length<LENGTH) {
result.push(CLS_OFF);
}
return result;
}
}
};
</script>
<style type="text/css">
.star {
font-size: 0;
}
/* .star-48 {
width: 20px;
height: 20px;
margin-right: 22px;
background-size: 20px 20px;
} */
.star-48 : last-chlid {
margin-right: 0;
}
.star-48 .on {
background-image: url('star48_on@2x.png')
}
.star-48 .half {
background-image: url('star48_half@2x.png')
}
.star-48 .off {
background-image: url('star48_off@2x.png')
}
.star-36 {
width: 15px;
height: 15px;
margin-right: 6px;
background-size: 15px 15px;
}
.star-36 .no {
background-image: url('star36_on@2x.png')
}
.star-36 .half {
background-image: url('star36_half@2x.png')
}
.star-36 .off {
background-image: url('star36_off@2x.png')
}
.star-24 {
width: 10px;
height: 10px;
margin-right: 3px;
background-size: 10px 10px;
}
.star-24 .no {
background-image: url('star24_on@2x.png')
}
.star-24 .half {
background-image: url('star24_half@2x.png')
}
.star-24 .off {
background-image: url('star24_off@2x.png')
}
.star-item {
display: inline-block;
background-repeat: no-repeat;
width: 20px;
height: 20px;
margin-right: 22px;
background-size: 20px 20px;
}
</style>