Home >WeChat Applet >Mini Program Development >WeChat mini program online release process

WeChat mini program online release process

coldplay.xixi
coldplay.xixiforward
2021-03-23 10:32:122590browse

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"
      }
    ]
  }
 

}
The entrance global configuration mainly configures tabBar settings, global pages definition, header background, font, network timeout, etc.

Mastering the wxml tag

huangbaokang.wxml file

<!--pages/huangbaokang/huangbaokang.wxml-->
<view>黄宝康的帅气照</view>
<view>
  <!--遍历图片文件,生成各个view-->
  <view>
    <image></image>
  </view>
</view>
huangbaokang.js file

Page({

  /**
   * 页面的初始数据
   */
  data: {
    photos_hbk: ['1.png', '2.png', '3.png', '4.png']
  }
})
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;
}
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!

Statement:
This article is reproduced at:csdn.net. If there is any infringement, please contact admin@php.cn delete