开篇语

微信小程序(有始有终,全部代码)开发--- 新增模块: 图片选取以及拍照功能-LMLPHP

正文

一、图片选择功能

wx.chooseImage(OBJECT)

微信小程序(有始有终,全部代码)开发--- 新增模块: 图片选取以及拍照功能-LMLPHP

微信小程序(有始有终,全部代码)开发--- 新增模块: 图片选取以及拍照功能-LMLPHP

wx.chooseImage({
count: 1, // 默认9
sizeType: ['original', 'compressed'], // 可以指定是原图还是压缩图,默认二者都有
sourceType: ['album', 'camera'], // 可以指定来源是相册还是相机,默认二者都有
success: function (res) {
// 返回选定照片的本地文件路径列表,tempFilePath可以作为img标签的src属性显示图片
var tempFilePaths = res.tempFilePaths
}
})

《---picture.js》

//index.js
//获取应用实例
var app = getApp()
Page({
data: {
source:"",
}, listenerButtonChooseImage: function() {
var that = this;
wx.chooseImage({
count: 1,
//original原图,compressed压缩图
sizeType: ['original'],
//album来源相册 camera相机
sourceType: ['album', 'camera'],
//成功时会回调
success: function(res) {
//重绘视图
that.setData({
source: res.tempFilePaths,
}) wx.previewImage({
current: 'http://119.29.74.46/myphoto/0.jpg', // 当前显示图片的链接,不填则默认为 urls 的第一张
urls: [ 'http://119.29.74.46/myphoto/0.jpg',
'http://119.29.74.46/myphoto/1.jpg',
'http://119.29.74.46/myphoto/2.jpg',
'http://119.29.74.46/myphoto/3.jpg',
'http://119.29.74.46/myphoto/4.jpg'
, 'http://119.29.74.46/myphoto/5.jpg',
'http://119.29.74.46/myphoto/6.jpg',
'http://119.29.74.46/myphoto/7.jpg'],
success: function(res){ },
fail: function() {
// fail
},
complete: function() {
// complete
}
}) }
})
}, onShareAppMessage: function () {
return {
title: '欢迎使用颜大傻牌跑步计',
desc: '将你的战绩分享到~~~',
path: '/page/picture/picture.js'
}
},
})

《---picture.wxml》


<view class="header" style="flex-direction:row;"> <!--通过数据绑定的方式动态获取js数据-->
<image src="{{source}}" mode="fulltoFill" class="pic"/> <!--监听按钮-->
<button type="primary" bindtap="listenerButtonChooseImage" class="button_anniu">点击我选择相册</button> <button bindtap="" class="button_anniu"> 发布 </button>
</view>

微信小程序(有始有终,全部代码)开发--- 新增模块: 图片选取以及拍照功能-LMLPHP

二、增置了图片预览


《picture.js》

//index.js
//获取应用实例
var app = getApp()
Page({
data: {
source:"http://159.203.250.111/Carly.png",
}, listenerButtonChooseImage: function() {
var that = this;
wx.chooseImage({
count: 1,
//original原图,compressed压缩图
sizeType: ['original'],
//album来源相册 camera相机
sourceType: ['album', 'camera'],
//成功时会回调
success: function(res) {
//重绘视图
that.setData({
source: res.tempFilePaths,
}) }
})
}, yulan:function(){
wx.previewImage({
current: 'http://119.29.74.46/myphoto/0.jpg', // 当前显示图片的链接,不填则默认为 urls 的第一张
urls: [ 'http://119.29.74.46/myphoto/0.jpg',
'http://119.29.74.46/myphoto/1.jpg',
'http://119.29.74.46/myphoto/2.jpg',
'http://119.29.74.46/myphoto/3.jpg',
'http://119.29.74.46/myphoto/4.jpg',
'http://119.29.74.46/myphoto/5.jpg',
'http://119.29.74.46/myphoto/6.jpg',
'http://119.29.74.46/myphoto/7.jpg'],
success: function(res){ },
fail: function() {
// fail
},
complete: function() {
// complete
}
})
}, onShareAppMessage: function () {
return {
title: '欢迎使用颜大傻牌跑步计',
desc: '将你的战绩分享到~~~',
path: '/page/picture/picture.js'
}
},
})

《picture.wxml》

<view class="header" style="flex-direction:row;">

<!--通过数据绑定的方式动态获取js数据-->
<image src="{{source}}" mode="fulltoFill" class="pic"/> <!--监听按钮-->
<button type="primary" bindtap="listenerButtonChooseImage" class="button_anniu">点击我选择相册</button> <button bindtap="yulan"><image src="/resources/yulan.png" class="swiper"></image></button>
<button bindtap="" class="button_anniu"> 发布 </button>
</view>

微信小程序(有始有终,全部代码)开发--- 新增模块: 图片选取以及拍照功能-LMLPHP

微信小程序(有始有终,全部代码)开发--- 新增模块: 图片选取以及拍照功能-LMLPHP

结束语

微信小程序(有始有终,全部代码)开发--- 新增模块: 图片选取以及拍照功能-LMLPHP


微信小程序(有始有终,全部代码)开发--- 新增模块: 图片选取以及拍照功能-LMLPHP

个人宣言

04-27 03:10