map遍历

2016-12-21  本文已影响74人  冷洪林
var names = ['Alice', 'Emily', 'Kate'];
names.map(function (name) {
      return <div>Hello, {name}!</div>
})
// cell的下半部分
    renderCellBottomView(rowData){
        return rowData.map((item, index) => {
            return(
                    <View style={styles.cellBottomStyle_goods} key={index}>
                        <TouchableOpacity
                            onPress={() => {alert("点击了商品")}}>
                            <View style={styles.goodsImgStyle}>
                                <Image
                                    style={{width:85, height:61}}
                                    source={{uri: item.picurl}}/>        
                            </View>
                        </TouchableOpacity>    
                        <View style={{width:85, height:9.5, marginTop:5, alignItems:"center"}}>
                            <Text style={{color:"#F96547", fontSize:Size(14)}}>¥{item.price}</Text>
                        </View>
                    </View>
            )
        })
    }
上一篇下一篇

猜你喜欢

热点阅读