zoukankan      html  css  js  c++  java
  • 饿了么

    代码

    ratingsshow() {
    			 
    					if (this.rating === true) {
    					let
    					 text = this.food.ratings.filter((rating) => {
    							if (this.ratingType === 0) {return rating.text && rating}
    
    
    else if (this.ratingType === 1) {return  rating.text && rating.rateType === 0} 
    else if (this.ratingType === 2) {return rating.text && rating.rateType === 1} 
    						})
    						
    						return text
    
    				} else {
    					let text = this.food.ratings.filter((rating) => {
    							if (this.ratingType === 0) {
    								return rating
    
    							} else if (this.ratingType === 1) {
    								return rating.rateType === 0
    							} else if (this.ratingType === 2) {
    								return  rating.rateType === 1
    							}
    
    						})
    						return text
    					}
    				 
    				
    				}
    

      vue数据是异步加载的,此时this.food.ratings还没有加载

    可以加个判断

    ratingsshow() {
    				if(this.food.ratings){
    					if (this.rating === true) {
    					let
    					 text = this.food.ratings.filter((rating) => {
    							if (this.ratingType === 0) {return rating.text && rating}
    
    
    else if (this.ratingType === 1) {return  rating.text && rating.rateType === 0} 
    else if (this.ratingType === 2) {return rating.text && rating.rateType === 1} 
    						})
    						
    						return text
    
    				} else {
    					let text = this.food.ratings.filter((rating) => {
    							if (this.ratingType === 0) {
    								return rating
    
    							} else if (this.ratingType === 1) {
    								return rating.rateType === 0
    							} else if (this.ratingType === 2) {
    								return  rating.rateType === 1
    							}
    
    						})
    						return text
    					}
    				} 
    				
    				}
    

      ok

  • 相关阅读:
    关于bind named.conf.options
    MASM 16位汇编程序几种典型的格式
    About GCC
    WebForms UnobtrusiveValidationMode 需要“jQuery”ScriptResourceMapping。
    Linux系统下的shutdown命令用于安全的关闭/重启计算机
    TreeView.ImageSet 属性
    python seaborn
    python neo4j
    Impala与Hive的比较
    pandas.resample()
  • 原文地址:https://www.cnblogs.com/chargeworld/p/10356099.html
Copyright © 2011-2022 走看看