1. Create a page using app.jsonAccording 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 modeWhen 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 styleThis 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 functionalizationMany 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 templatesFor 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 developmentContent 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 fileFor 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 toolsSummarizeThis 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:
|
<<: Linux nohup to run programs in the background and view them (nohup and &)
>>: MySQL installation tutorial under Windows with pictures and text
This article mainly records the problems and solu...
This article example shares the specific code of ...
Table of contents Environment Setup Overview 1.Wh...
Table of contents 1 Introduction 2 Basic usage 2....
There is a business that queries the 5 most recen...
Preface Recently I encountered a requirement, whi...
question The tomcat container was successfully ad...
Passing values between mini program pages Good ...
The use of Vue+ElementUI Tree is for your referen...
Table of contents Preface 1. Download MySQL 8.0.2...
Table of contents 1. What is recursion? 2. Solve ...
I am going to review Java these two days, so I wr...
mysql set to case insensitive Windows Go to the d...
Create Table create table table name create table...
Special symbols Named Entities Decimal encoding S...