Some tips on speeding up the development of WeChat mini-programs

Some tips on speeding up the development of WeChat mini-programs

1. Create a page using app.json

According to our usual development habits, when creating a new page, we usually create a folder first, and then create the corresponding page. After the creation is completed, the page will be automatically registered in app.json. In fact, we can also generate the corresponding page by directly registering the page in app.json.

"pages": [
    "pages/index/index",
    "pages/newpage/newpage"
 ],

As shown above, register the path in the configuration file and the applet will automatically create the corresponding path.

2. Make good use of compilation mode

When we want to debug a page, quite a few developers are accustomed to directly modifying app.json to adjust the first stack page. In fact, we can use the compilation mode to add a compilation page instead of modifying the configuration file.

3. Component reuse mini program style

This is often forgotten because when a new component is created, the applet does not display this configuration item. Configure options as follows, the component can use the global style (app.wxss)

Component({
  //Inherit colorui style options: {
    addGlobalClass: true,
    multipleSlots: true
  },
  ...
 }

4. app.js initialization content functionalization

Many mini-programs have a lot of content written in onLaunch, which is very confusing and makes later debugging particularly painful. Different initialization contents can be written as different functions, which are functionalized and modularized.

onLaunch: function(options) {
    //Here we need to process the way to enter the applet this.InitCloud(); //Initialize the cloud service/ ESC
    this.InitCustom(); //Initialize the configuration information required for custom this.InitEdu(); //Initialize the configuration of the education system},

5. Make good use of templates

For wxml content with a lot of repetitive content, you can extract it into a template file and import it directly when using it.

<import src="template/NexuTemplate.wxml"/>
<view wx:for="{{dirlist}}" wx:key="item">
 <template is="dirshow" data="{{item}}"></template>
</view>

6. Cloud development and hybrid development

Content security identification, openid acquisition, image pornography detection, payment process, content push, etc. are not so simple if you use your own backend to implement them. However, if you use cloud development technology to replace this part and focus on business logic, you will open up a new world.

Some functions of cloud development (I will write a special article later to introduce the content of cloud development and hybrid development):

const cloud = require('wx-server-sdk')

cloud.init({
  env: cloud.DYNAMIC_CURRENT_ENV
})


// Cloud function entry function exports.main = async (event, context) => {
  // console.log(event)
  switch (event.action) {
    case 'getWXACode': {
      return getWXACode(event)
    }
    case 'getOpenData': {
      return getOpenData(event)
    }
    case 'msgSecCheck': {
      return msgSecCheck(event)
    }
    case 'imgSecCheck': {
      return imgSecCheck(event)
    }
    case 'submitPages': {
      return submitPages(event)
    }
    default: {
      return
    }
  }
}

//Get the applet code async function getWXACode(event) {
  console.log(event.url)
  // Here we will get the permanent and valid applet code, save it in the cloud file storage, and finally return the cloud file ID for the front-end to use const wxacodeResult = await cloud.openapi.wxacode.get({
    path: event.url || 'pages/index/index',
  })

  const fileExtensionMatches = wxacodeResult.contentType.match(/\/([^\/]+)/)
  const fileExtension = (fileExtensionMatches && fileExtensionMatches[1]) || 'jpg'

  const uploadResult = await cloud.uploadFile({
    // Cloud file path. For demonstration purposes, a fixed name is used here: cloudPath: `wxCode/wxCode${Math.random() * 9999999}.${fileExtension}`,
    // The file content to be uploaded can be directly passed into the image Buffer
    fileContent: wxacodeResult.buffer,
  })

  if (!uploadResult.fileID) {
    throw new Error(`Upload failed, file is empty, storage server status code is empty ${uploadResult.statusCode}`)
  }

  return uploadResult.fileID
}

// Get openid
async function getOpenData(event) {
  // Requires wx-server-sdk >= 0.5.0
  const wxContext = cloud.getWXContext()

  return {
    event,
    openid: wxContext.OPENID,
    appid: wxContext.APPID,
    unionid: wxContext.UNIONID,
  }
}

// Check if the text is compliant async function msgSecCheck(event) {
  // Requires wx-server-sdk >= 0.5.0
  return cloud.openapi.security.msgSecCheck({
    content: event.content,
  })
}

// Check if the image is compliant async function imgSecCheck(event) {
  return cloud.openapi.security.imgSecCheck({
    media:
      contentType: event.contentType,
      value: Buffer.from(event.value)
    }
  })
}

//Include pages async function submitPages(event) {
  return cloud.openapi.search.submitPages({
    pages: [{
      path: event.path,
      query: event.query
    }]
  })
}




//Get the date function getDateTime(sj) {
  var now = new Date(sj * 1000);
  var year = now.getFullYear();
  var month = now.getMonth() + 1;
  var date = now.getDate();
  var hour = now.getHours();
  var minute = now.getMinutes();
  // var second = now.getSeconds();
  return year + "year" + month + "month" + date + "day";
}

7. Centralize personal configuration data into one file

For example, data such as server domain names and interface tokens that may change but are frequently used are concentrated in one file.

module.exports={
  UseCloud:true,
  CloudId:'', //Cloud development environment id
  TraceUser:true, //Record user access log AdaptStorge:true, //Allow caching of user data SevDomain:'http://localhost' //Domain name of the server}

8. Make good use of the version management tools of developer tools

Summarize

This concludes this article about some tips on speeding up the development of WeChat mini-programs. For more relevant WeChat mini-program development suggestions, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed explanation of WeChat applet development (project from scratch)
  • WeChat Mini Program Cloud Development: Using Cloud Functions
  • WeChat applet cloud development database operation
  • WeChat applet WeChat payment access development example detailed explanation
  • WeChat Mini Program Development - Getting Started Tutorial
  • WeChat applet cloud development (database) detailed explanation
  • Using WeChat Mini Programs to Develop Front-End [Quick Start]
  • WeChat Mini Program Cloud Development Detailed Tutorial
  • WeChat applet development experience summary (recommended)
  • WeChat Mini Program Development Basic Tutorial

<<:  Linux nohup to run programs in the background and view them (nohup and &)

>>:  MySQL installation tutorial under Windows with pictures and text

Recommend

Detailed explanation of Nodejs array queue and forEach application

This article mainly records the problems and solu...

js to achieve star flash effects

This article example shares the specific code of ...

Summary of the differences between Vue's watch, computed, and methods

Table of contents 1 Introduction 2 Basic usage 2....

WeChat applet + ECharts to achieve dynamic refresh process record

Preface Recently I encountered a requirement, whi...

Example of how to implement value transfer between WeChat mini program pages

Passing values ​​between mini program pages Good ...

How to use Vue+ElementUI Tree

The use of Vue+ElementUI Tree is for your referen...

JavaScript recursion detailed

Table of contents 1. What is recursion? 2. Solve ...

How to set mysql to case insensitive

mysql set to case insensitive Windows Go to the d...

Basic operations of mysql learning notes table

Create Table create table table name create table...

Web page html special symbols html special characters comparison table

Special symbols Named Entities Decimal encoding S...