这是微信小程序常用的几个API,特地总结一下:
学会使用 微信官方文档 · 小程序
wx.setNavigationBarTitle({
title: '微信api',
})
wx.showLoading({
title: '我不会停的',
})
// 显示loading 提示框,需主动调用 wx.hideLoading才能关闭提示框
setTimeout(() => {
wx.hideLoading()
}, 3000)
wx.showToast({
title: '我要加载',
icon:'loading'
})
wx.showModal({
title: '我是showModal',
content: 'hahaha',
// complete: (res) => {
// if (res.cancel) {
// }
// if (res.confirm) {
// }
// }
})
wx.setNavigationBarColor({
frontColor: '#ffffff',
backgroundColor: '#ff6600',
animation: {
duration: 400,
timingFunc: 'easeIn'
}
})
<view>
界面api
<button> wx.setNavigationBarTitle() 标题栏文本button>
<button> wx.showLoading() 加载提示button>
<button> wx.hideLoading() 停止提示button>
<button> wx.showToast() 提示button>
<button> wx.showModal() 模态框button>
<button type="primary" bindtap="showTip">提示button>
view>
showTip() {
wx.setNavigationBarColor({
frontColor: '#ffffff',
backgroundColor: '#ff6600',
animation: {
duration: 400,
timingFunc: 'easeIn'
}
})
wx.setNavigationBarTitle({
title: '微信api',
})
// wx.showLoading({
// title: '我不会停的',
// })
// setTimeout(() => {
// wx.hideLoading()
// }, 3000)
// wx.showToast({
// title: '我要加载',
// icon:'loading'
// })
wx.showModal({
title: '我是showModal',
content: 'hahaha',
// complete: (res) => {
// if (res.cancel) {
// }
// if (res.confirm) {
// }
// }
})
},
<view>开放能力view>
<button>wx.getUserProfile 获取用户信息button>
<view wx:if="{{userInfo.nickName}}">
<image style="width: 100px;height: 100px;" src="{{userInfo.avatarUrl}}" mode="" />
<view>{{userInfo.nickName}}view>
view>
<button wx:else type="primary" bindtap="getUser">获取用户信息button>
getUser(){
var that = this;
wx.getUserProfile({
desc: '需要获取您的昵称',
success:res=>{
console.log(res);
//更新本地用户信息
that.setData({"userInfo":res.userInfo})
//存储用户信息到本地
wx.setStorageSync('userInfo',res.userInfo)
}
})
},
在这里插入代码片
<button>wx.downloadFile()下载文件button>
<button> wx.saveImageToPhotosAlbum()保存图片到相册button>
<button type="primary" bindtap="downImg">下载图片button>
<view>
<button bindtap="upImg">上传图片button>
view>
downImg() {
wx.downloadFile({
url: this.data.pic,
success(res) {
console.log(res);
//把临时文件保存到相册(需要用户授权)
wx.saveImageToPhotosAlbum({
filePath: res.tempFilePath,
success() {
//提示保存成功
wx.showToast({
title: '下载图片成功',
icon: 'none'
})
}
})
}
})
},
<view>
<button bindtap="upImg">上传图片button>
view>
<button>wx.uploadFile()上传文件button>
<button>wx.chooseMedia()选择图片或者视频button>
<image src="{{pic}}" module="aspectFill" bindtap="downImg" />
upImg(){
var that =this;
wx.chooseMedia({
count:1,
success(res){
console.log(res)
//获取 选择 的第 0 个图片临时地址
var tempFile=res.tempFiles[0].tempFilePath;
//执行上传操作
wx.uploadFile({
filePath: tempFile,
name: 'file',
url: 'http://dida100.com/ajax/file.php',
success:res=>{
console.log("@@@",res);
console.log("为转换前",res.data)
//转化为js对象
var data=JSON.parse(res.data)
console.log("转换后",data)
//更新图片信息
that.setData({pic:"http://dida100.com"+data.pic})
}
})
}
})
},
onLoad(options) {
wx.getSystemInfo({
success(res) {
console.log(res)
}
})
}
statusBarHeight 状态栏高度
windowWidth 可用窗口的宽
windowHeight 可用窗口的高
safeArea 安全区域
model 手机型号
batteryLevel 电量
system 系统ios/android
wx.getSystemInfoAsync({
success (res) {
console.log(res.model)
console.log(res.pixelRatio)
console.log(res.windowWidth)
console.log(res.windowHeight)
console.log(res.language)
console.log(res.version)
console.log(res.platform)
}
})