この記事は主にWeChatアプレットの画像APIサンプルの詳細な説明に関する関連情報を紹介します。必要な友人はそれを参照してください
画像を選択するとき、画像が元の画像であるかどうか、および画像ソースであるかどうかを設定できます。 。これも非常に一般的で、たとえば、パーソナル センターでのアバターの設定は、wx.upLoadFile() API で使用できます:
wx.chooseImage(object)
。
<!--监听按钮--> <button type="primary" bindtap="listenerButtonChooseImage">点击我选择相册</button> <!--通过数据绑定的方式动态获取js数据--> <image src="{{source}}" mode="aspecFill" style="width: 640rpx; height: 640rpx"/>
js
Page({ data:{ // text:"这是一个页面" 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(object)
これも使い方がよくわからない奇妙なAPIです。最初は公式の使い方を真似しましたが、効果がなかったので、自分なりの使い方を補足しました
wxml<!--图片预览--> <button type="primary" bindtap="listenerButtonPreviewImage">展示图片</button>
js
Page({ data:{ // text:"这是一个页面" source: '' }, /** * 预览图片 又一个奇葩接口 */ listenerButtonPreviewImage: function() { wx.previewImage({ current: 'http://img.souutu.com/2016/0511/20160511055648316.jpg', urls: [ 'http://img.souutu.com/2016/0511/20160511055648316.jpg', 'http://img.souutu.com/2016/0511/20160511055650751.jpg', 'http://img.souutu.com/2016/0511/20160511054928658.jpg' ], //这根本就不走 success: function(res) { console.log(res); }, //也根本不走 fail: function() { console.log('fail') } }) } })
この記事を読んでいただきありがとうございます。 、皆さんのお役に立てれば幸いです、このサイトを応援していただきありがとうございます。
WeChat アプレットの画像 API の例と関連記事の詳細な説明については、PHP 中国語 Web サイトに注目してください。