Rumah  >  Artikel  >  applet WeChat  >  app.json是什么

app.json是什么

(*-*)浩
(*-*)浩asal
2019-05-18 13:16:4011761semak imbas

“app.json”是当前小程序的全局变量,用户使用“app.json”文件对微信小程序进行全局配置,还可以决定页面文件的路径、窗口表现、设置网络的超时时间、设置tab等。

app.json是什么

大家使用app.json文件对微信小程序进行全局配置。可以决定页面文件的路径、窗口表现、设置网络的超时时间、设置tab等。

app.json文件的配置属性有:

1.pages,数据类型是Array,功能:设置页面的路径.这个属性必须有

2.window:数据类型:Object.功能:设置默认页面的窗口表现.这个属性可有可有

window可以设置的属性有以下5个:navigationBarBackgroundColor   navigationBarTextStyle  navigationBarTitleText  backgroundColor backgroundTextStyle

3.tabBar:数据类型:Object.功能:设置底部tab表现这个属性可有可无

 tabBar可以设置的属性有color selectedColor backgroundColor  borderStyle list

4.networkTimeout:数据类型:Object 功能:设置网络超时时间.这个属性可有可无

networkTImeout可以设置的属性有request connectedSocket uploadFile downloadFile

5.debug:数据类型:Boolean.功能:设置debug功能是否开启.这个属性可有可无.

以下json文件,包含以上5个属性:

{
“pages”:[

"pages/index/index",

"pages/logs/logs/index"],

"window":{
},
"tabBar":{

"list":[

{
"pagePath":"pages/index/index",

"text":"首页"
},

{
"pagePath":"pages/logs/logs",
"text":日志
}]
},

"networkTimeout":{
"request":10000,
"downloadFile":10000
},
"debug":true
}

Atas ialah kandungan terperinci app.json是什么. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!

Kenyataan:
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn
Artikel sebelumnya:微信小程序用什么语言来编写Artikel seterusnya:auto.js是什么