WeChat mini program online release process

coldplay.xixi
Release: 2021-03-23 11:30:32
forward
2454 people have browsed it

WeChat mini program online release process

I recently spent a day or so learning about the development of WeChat mini programs. I tried to practice the mentality and created a very simple page.

Let’s just think of it as a learning summary: there are quite a lot of learning points. By checking the official interface documents, you can become familiar with the WeChat applet development tools and engineering architecture. Similar to traditional page development, WeChat applet is also composed of js files. , page layout file wxml and style file wxss

(free learning recommendation:小program development tutorial)

1. First log in to the WeChat public platform, register in the mini program column to obtain the appid, fill in the appid in the development tool, and open the development tool for coding work.


1.1. Consolidate knowledge points.

app.json file

{ "pages":[ "pages/huangbaokang/huangbaokang", "pages/zhanglulu/zhanglulu" ], "window":{ "backgroundTextStyle":"light", "navigationBarBackgroundColor": "#baf088", "navigationBarTitleText": "幸福婚姻", "navigationBarTextStyle":"black" }, "tabBar": { "list": [ { "pagePath": "pages/huangbaokang/huangbaokang", "text": "黄宝康", "iconPath": "images/1.png", "selectedIconPath": "images/1.png" }, { "pagePath": "pages/zhanglulu/zhanglulu", "text": "张露露", "iconPath": "images/2.png", "selectedIconPath": "images/2.png" } ] } }
Copy after login
The entrance global configuration mainly configures tabBar settings, global pages definition, header background, font, network timeout, etc.

Mastering the wxml tag

huangbaokang.wxml file

 黄宝康的帅气照      
Copy after login
huangbaokang.js file

Page({ /** * 页面的初始数据 */ data: { photos_hbk: ['1.png', '2.png', '3.png', '4.png'] } })
Copy after login
huangbaokang.wxss file

/* pages/huangbaokang/huangbaokang.wxss */ .title{ font-size: 70rpx; text-align: center; } .photo-list{ margin-top: 20rpx; } .photo-item{ width: 100%; height: 100%; margin-top: 20rpx; }
Copy after login
Specific To develop the page, you need to learn the usage of various wxml tags, the use of the statement wx:for, and dynamic data binding (using {{}}).

Event function processing

Further master event processing, etc., bind a method, and correspond to a method in the js file.

2. Upload, publish, review and go online

After coding, you can click the upload button in the upper right corner of the development tool to upload the code to the WeChat backend. As follows:WeChat mini program online release process

# After entering the relevant version number and confirming it, you can see the submitted version in the WeChat mini program background management office.WeChat mini program online release process

The picture above is after submission. After submission, it will be reviewed. Generally, the review results can be viewed in one or two days. After passing the review, it needs to be released online. .

After the above operation, you can search for the programs we developed ourselves in WeChat and Mini Programs.

Attachment: Project Architecture DiagramWeChat mini program online release process

Related free learning recommendations:WeChat Mini Program Development Tutorial

######

The above is the detailed content of WeChat mini program online release process. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:csdn.net
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!