Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

The method of Global configuration of app.json File

2025-01-18 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

In this article, the editor introduces in detail the "method of global configuration of app.json files", with detailed contents, clear steps and proper handling of details. I hope that this article "the method of global configuration of app.json files" can help you solve your doubts.

The app.json file is used to configure WeChat Mini Programs globally, determine the path of the page file, window performance, set network timeout, set multi-tab, and so on.

The following is an app.json that contains all configuration options:

{

"pages": [

"pages/index/index"

"pages/logs/index"

]

"window": {

"navigationBarTitleText": "Demo"

}

"tabBar": {

"list": [{

"pagePath": "pages/index/index"

"text": "Home"

}, {

"pagePath": "pages/logs/logs"

"text": "log"

}]

}

"networkTimeout": {

"request": 10000

"downloadFile": 10000

}

"debug": true

}

App.json configuration item list property type required description pagesString Array is to set the page path windowObject whether to set the window of the default page tabBarObject does not set the performance of the bottom tab networkTimeoutObject does not set network timeout debugBoolean whether to set whether to turn on debug mode read here, this article "the method of global configuration of app.json files" has been introduced, you still need to practice and use it before you can understand it. If you want to know more about related articles, welcome to follow the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report