|
传统web |
微信小程序 |
结构 |
HTML |
WXML |
样式 |
CSS |
WXSS |
逻辑 |
JavaScript |
JavaScript |
配置 |
无 |
json |
基本的项目目录
全局配置 app.json
{
"pages": [
"pages/index/index"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#D8322E",
"navigationBarTitleText": "小微祝福",
"navigationBarTextStyle": "white"
},
"style": "v2",
"sitemapLocation": "sitemap.json",
"lazyCodeLoading": "requiredComponents"
}
- pages 属性:用于描述当前小程序所有页面路径。
- window 属性:定义小程序所有的公共样式。
- style 属性:指定使用升级后的weui样式
- sitemapLocation 属性:指明 sitemap.json 的位置
局部配置(页面配置)
sitemap (了解即可)