미니 프로그램의 구성 파일은 두 가지 유형으로 나뉩니다.
전역 구성 파일, app.json
루트 디렉터리의 app.json
페이지 구성 파일, 각 페이지 디렉터리의 [페이지 이름].json
app.json
프로젝트 구성 선언 파일(탐색 모음 스타일, 색상 등 프로젝트의 일부 정보 지정)
{ // 当前程序是由哪些页面组成的(第一项默认为初始页面) // 所有使用到的组件或页面都必须在此体现 // https://mp.weixin.qq.com/debug/wxadoc/dev/framework/config.html#pages "pages": [ ... ], // 应用程序窗口设置 // https://mp.weixin.qq.com/debug/wxadoc/dev/framework/config.html#window "window": { ... }, // 应用导航栏设置 // https://mp.weixin.qq.com/debug/wxadoc/dev/framework/config.html#tabBar "tabBar": { ... }, // 网络超时设置 // https://mp.weixin.qq.com/debug/wxadoc/dev/framework/config.html#networkTimeout "networkTimeout": {}, // 是否在控制台输出调试信息 // https://mp.weixin.qq.com/debug/wxadoc/dev/framework/config.html#debug "debug": true}
[페이지 이름].json
🎜특정 페이지에서 작업할 때 창 설정을 지정하는 데 사용됩니다.🎜 으아악위 내용은 미니 프로그램 프로젝트의 기본 구성의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!