部署wepy框架開發微信小程序

我用的是yarn,若是你使用的是npm,也能夠html

首先須要安裝wepy命令行工具node

npm install wepy-cli -g

而後在選定的位置使用腳手架工具建立wepy項目git

wepy init standard yy-cabinet
PS C:\Users\gushi\Desktop> wepy init standard yy-cabinet
? Project name yy-cabinet
? Project description 研一智能藥劑櫃微信小程序項目
? Author gstoken <gushihao@hotmail.com>
? Use ESLint to lint your code? No
? Use Redux in your project? Yes
? Use web transform feature in your project? Yes

   wepy-cli · Generated "yy-cabinet".

接着安裝依賴包github

yarn install

依賴包安裝完成以後就能夠嘗試build了web

wepy build
wepy build --watch //這樣作能夠監視文件變化自動組件

編譯以後會出現dist目錄npm

使用微信web開發者工具打開該目錄json

 

 

重要提醒

  1. 使用微信開發者工具-->添加項目項目目錄請選擇dist目錄。小程序

  2. 微信開發者工具-->項目-->關閉ES6轉ES5。 重要:漏掉此項會運行報錯。微信小程序

  3. 微信開發者工具-->項目-->關閉上傳代碼時樣式自動補全。 重要:某些狀況下漏掉此項也會運行報錯。promise

  4. 微信開發者工具-->項目-->關閉代碼壓縮上傳。 重要:開啓後,會致使真機computed, props.sync 等等屬性失效。(注:壓縮功能可以使用WePY提供的build指令代替,詳見後文相關介紹以及Demo項目根目錄中的wepy.config.jspackage.json文件。)

  5. 本地項目根目錄運行wepy build --watch,開啓實時編譯。(注:若是同時在微信開發者工具-->設置-->編輯器中勾選了文件保存時自動編譯小程序,將能夠實時預覽,很是方便。)

 

 

 

而後要手動啓用Promise

在1.4.1如下版本,wepy生成的項目默認都會加入promise polyfill。

在1.4.1之後的版本,須要用戶手動加入,具體方法以下:

yarn add promise-polyfill

//在app.wpy中引入polyfill
import Promise from 'promise-polyfill'; 
//在app.wpy中使API promise化
export default class extends wepy.app {

    constructor () {
        super();
        this.use('promisify');
    }

 而後安裝weui-wxss界面框架

yarn add weui-wxss

 而後在app.wpy裏面引入

@import url("../node_modules/weui-wxss/dist/app.wxss");
相關文章
相關標籤/搜索