light生命了无法获取值
renderStarts(){ const{ starts }=this.state; return( <div> {/* 用js中的map语法来渲染5颗五角星 */ [1,2,3,4,5].map((item,index)=>{ const light = starts >= item ? "oderItem__start--light":""; return( <span key={index}>★</span> ) }) } </div> ) }
renderStarts(){ const{ starts }=this.state; return( <div> {/* 用js中的map语法来渲染5颗五角星 */ [1,2,3,4,5].map((item,index)=>{ const light = starts >= item ? "oderItem__start--light":""; return( <span key={index}>★</span> ) }) } </div> ) }
2019-04-17
举报