小程序分包的分包與問題

小程序的分包其實不難的,只是我把它想的太過於複雜了,致使浪費了不少時間

分包實質上就是目錄結構改變下,而後app.json的配置改變下,json

 

{ "pages": [ //pages不能沒有(若是報錯請把註釋刪掉) "page/tabBar/index/index", "page/tabBar/warehouse/index", "page/tabBar/mycenter/index" ], "window": { "backgroundTextStyle": "light", "navigationBarBackgroundColor": "#fff", "navigationBarTitleText": "分包演示", "navigationBarTextStyle": "black" }, "tabBar": { "color": "#2e2e2e", "selectedColor": "#db4b29", "backgroundColor": "#FFFFFF", "borderStyle": "#D0D1D3", "fontSize": "22rpx", "list": [ { "pagePath": "page/tabBar/xxx/xxx", "text": "首頁", "iconPath": "./res/home.png", "selectedIconPath": "./res/a_home.png" }, { "pagePath": "page/tabBar/xxx/xxx", "text": "茶倉", "iconPath": "./res/cy.png", "selectedIconPath": "./res/a_cy.png" }, { "pagePath": "page/tabBar/xxx/xxx", "text": "個人", "iconPath": "./res/my.png", "selectedIconPath": "./res/a_my.png" } ] }, "subPackages": [ { "root": "page/teaindex/", "pages": [ "pages/xxx/xxx" ] }, { "root": "page/warehouse/", "pages": [ "pages/xxx/xxx", ] }, { "root": "page/center/", "pages": [ "pages/xxx/xxx" ] } ] }

不仔細存在的問題:寫好分包,而後模擬器上不出現任何的頁面樣式也不報錯,先仔細檢查一遍你改變了頁面路徑,在app.json裏面是否也去修正你的頁面路徑和圖片路徑;

小程序

這種狀況通常都是不仔細形成的,模擬器出現不了頁面,先檢查你的app.json 是否哪裏寫錯了app

相關文章
相關標籤/搜索