title |
---|
微信小程序相关 |
设置 this.globalData.info = ''; 获取 getApp().globalData.info
<view animation="{{animationData}}">{{toastTitle}}</view>
createGlobalAnimate() { // 页面初始化的时候就可以去执行,duration可以不用写,在step里面可以加
var animation = wx.createAnimation({
duration: 500,
timingFunction: 'ease',
});
this.animation = animation;
}
showAnimate() {
animation.opacity(1).step();
this.setData({
animationData: animation.export()
});
},
wx.navigateTo({url:'/pages/xiangqing/xiangqing?id=上一页的参数'})
<view class='block' bindtap='fun' data-type='{{item}}'></view>
// 获取参数
fun(e) {
let type = e.currentTarget.dataset.type;
}
1.把单个页面的less文件复制出来到一个test.less 把经过编译的css拿到小程序的页面,注:如果less文件的路径不对的话,是不会编译的,还会遇到background无法加载本地图片
2.把div, p, h1-h6标签统一换成view; 把v-if,v-show换成wx:if; 把img标签换成image; v-for换成wx:for="{{arr}}" wx:key="index"; @click换成bindtap,并把要传的参数写成data-xxx="{{item.xxx}}"
3.把编译过的css文件里面的div,h5,span, img 替换掉
<input placeholder="请输入密码" value="{{pwd}}" type="password"/>
const app = getApp()
app.globalData.userInfo = e.detail.userInfo
1.下载图片 2.getImageInfo 3.拿到图片信息之后再画 4.下载图片的域名必须在白名单内,不然调试可以打开,真机打不开
"files.associations": {
"*.vue": "vue",
"*.wxss": "css",
"*.mpx": "vue"
}