WeChatアプレットはcanvasで絵を描いて共有します。


最近WeChatアプリを開始しました。このような要求があります。
リストページから詳細に入り、各詳細ページで共有し、共有された画像は現在の詳細データを含む画像です。
下の図のリストのように:

分かち合う姿:

解决案と考え方:canvas絵を描いて絵を作ります。
上のコード:
【html部分】

<canvas style='width:{{canvasWidth}}px;height:{{canvasHeight}}px' canvas-id='myCanvas'></canvas>
<button open-type='share'>  </button>
【js部分】

var ctx = "" //     canvas
var leftMargin = "" //        
var topMargin = "" //        
Page({

 /**
 *        
 */
 data: {
 title: '     ',
 salary: '500-8000 / ',
 rtype: '  ',
 rmoney: '20 ',
 canvasWidth: '', // canvas  
 canvasHeight: '', // canvas  
 imagePath: '' //        
 },

 /**
 *       --      
 */
 onLoad: function (options) {
 var that = this
 var sysInfo = wx.getSystemInfo({
  success: function (res) {
  that.setData({
   //        ,      80%,       5:4
   canvasWidth: res.windowWidth,
   canvasHeight: res.windowWidth * 0.8
  })
  leftMargin = res.windowWidth
  topMargin = res.windowWidth * 0.8
  },
 })
 },

 /**
 *       --          
 */
 onReady: function () {
 ctx = wx.createCanvasContext('myCanvas')
 this.addImage()
 this.tempFilePath()
 
 },
 //    
 addImage: function () {
 var context = wx.createContext();
 var that = this;
 var path = "/images/share.jpg";
 //        canvas,      drawImage()     ,     
 //        ,         
 ctx.drawImage(path, 0, 0, this.data.canvasWidth, this.data.canvasHeight);
 this.addTitle()
 this.addRtype()
 this.addRmoney()
 this.addSalary()
 ctx.draw()
 },
 //   
 addTitle: function (){
 var str = this.data.title
 ctx.font = 'normal bold 20px sans-serif';
 ctx.setTextAlign('center'); //     
 ctx.setFillStyle("#222222");
 ctx.fillText(str, this.data.canvasWidth/2,65)
 },
 //      
 addRtype: function () {
 var str = this.data.rtype
 ctx.setFontSize(16)
 ctx.setFillStyle("#ff4200");
 ctx.setTextAlign('left');
 ctx.fillText(str, leftMargin * 0.35, topMargin * 0.4)
 },
 //      
 addRmoney: function () {
 var str = this.data.rmoney
 ctx.setFontSize(16)
 ctx.setFillStyle("#222");
 ctx.setTextAlign('left');
 ctx.fillText(str, leftMargin * 0.35, topMargin * 0.5)
 },
 //    
 addSalary: function () {
 var str = this.data.salary
 ctx.setFontSize(16)
 ctx.setFillStyle("#222");
 ctx.setTextAlign('left');
 ctx.fillText(str, leftMargin * 0.35, topMargin * 0.61)
 },
 /**
 *          
 */
 onShareAppMessage: function (res) {
 // return eventHandler        
 return {
  title: this.data.title,
  path: '/pages/test/test',
  imageUrl: this.data.imagePath
 };
 },
 //    
 tempFilePath: function(){
 let that = this;
 wx.canvasToTempFilePath({
  canvasId: 'myCanvas',
  success: function success(res) {
  wx.saveFile({
   tempFilePath: res.tempFilePath,
   success: function success(res) {
   that.setData({
    imagePath: res.savedFilePath
   });
   }
  });
  }
 });
 },

 /**
 *       --      
 */
 onShow: function () {

 },

 /**
 *       --      
 */
 onHide: function () {

 },

 /**
 *       --      
 */
 onUnload: function () {

 },

 /**
 *           --        
 */
 onPullDownRefresh: function () {

 },

 /**
 *              
 */
 onReachBottom: function () {

 }


})
今注目度の高いWeChat小プログラムを紹介します。
以上が本文の全部です。皆さんの勉強に役に立つように、私たちを応援してください。