微信小程序学习

bug: 修改button宽度,不管用。把app.json里 "style": "v2" 去掉就行了。

页面间-传值 正向、反向

布局方式 display:flex and 常用样式介绍

微信小程序 - display详细介绍

display: inline-block添加此属性,可使text组件设置宽度有效

button - 样式、布局

冒泡与非冒泡事件 tap/catch

wxss样式的几种方式,现在支持父子关系了

.father .son {     // 父的子
  width:50rpx;
}
.father .son image {     // 父的子 子的image
  width:50rpx;
}
.father, .son {     // 父和子!!
  width:50rpx;
}

本地存储 setStorageSync getStorageSync

公共样式 - 一行文本溢出显示省略号

必备第三方插件 - 安装、使用

微信小程序开发——使用promise封装异步请求

微信小程序所有组件初始化样式box-sizing,在app.wxss中添加

微信小程序data-xx 的使用

取值 event.currentTarget.dataset.index

data-name="{{item.name}}",name是自定义字段,js取值时: e.currentTarget.dataset.name。
组件之间传递信息,自定义方法时,子控件赋值e.currentTarget.dataset.name;父控件取值 e.detail.data.index。

微信小程序 数组(增,删,改,查)等操作实例详解

微信小程序之数组操作:push与concat的区别

开发小程序框架-mpvue


uniapp

  • position:static (默认值)
  1. css样式中 position:static (默认值)其他几种样式图文解释 absolute、relative、fixed
  2. position中absolute和fixed的区别

你可能感兴趣的:(微信小程序学习)