Taro小记

2018-12-01  本文已影响14人  七分小熊猫

👽 Taro['tɑ:roʊ],泰罗·奥特曼,宇宙警备队总教官,实力最强的奥特曼。

 // 在 willMount 之前无法拿到路由参数
 const abc = this.$router.params.abc
// 正确的
.button{
  width: auto;
  margin-bottom: 40px;
}
// 错误的,这样写的样式在h5上无效
Button{
  width: auto;
  margin-bottom: 40px;
}
 render() {
   let style={
     width:'100%'
   };
   return (
     <View className='index'>
       <Image src={this.state.url} style={style} mode='widthFix' /> //重点在mode和width上
     </View>
   )
 }
page {
  background-color: #eef3f3;
}
上一篇 下一篇

猜你喜欢

热点阅读