小程序給我們暴露了兩個(gè)參數(shù) require 和 module , require 用來(lái)在模塊中加載其他模塊,module 用來(lái)將模塊中的方法暴露出去
module.exports = function(){}
所以只要需要讓第三方庫(kù)的代碼使用這種形式的 export 就可以了
打一個(gè) Redux 包,讓它可以兼容微信小城的加載方式
git clone https://github.com/reactjs/redux.git npm install # 詳細(xì)內(nèi)容可以到redux項(xiàng)目的package.json中查看 # 這些命令是是使用webpack構(gòu)建UMD模式的包。也就是說(shuō)所有的代碼,包括依賴的庫(kù)都會(huì)被打包到一個(gè)文件中,并且自帶一段模塊加載代碼,文件可以在dist目錄下找到 npm run build:umd && npm run build:umd
用編輯器打開(kāi) dist 目錄下的 redux.js 文件
(function webpackUniversalModuleDefinition(root, factory) { if(typeof exports === 'object' && typeof module === 'object') module.exports = factory(); else if(typeof define === 'function' && define.amd) define([], factory); else if(typeof exports === 'object') exports["Redux"] = factory(); else root["Redux"] = factory(); })(this, function() { ... })
因?yàn)槲⑿判〕绦虻拈_(kāi)發(fā)環(huán)境是定制的,暫時(shí)沒(méi)有發(fā)現(xiàn)辦法直接安裝 redux-devtool 的插件
npm install -g remotedev-server remotedev --hostname=localhost --port=5678
因?yàn)闆](méi)辦法用 npm 安裝到本地(微信小程序會(huì)嘗試去加載項(xiàng)目目錄中的所有js),所以這里使用全局安裝,第二條命令是啟動(dòng) remotedev-server , hostname 和 port 分別指定為 localhost和 5678
在 store 下集成 devtool
const {createStore, compose} = require('./libs/redux.js'); const devTools = require('./libs/remote-redux-devtools.js').default; const reducer = require('./reducers/index.js') function configureStore() { return createStore(reducer, compose(devTools({ hostname: 'localhost', port: 5678, secure: false }))); } module.exports = configureStore;
把 devtool 使用 redux 的 compose 加到 store 中去。 hostname 和 port 是指定為之前啟動(dòng) remotedev-server 啟動(dòng)時(shí)候指定的參數(shù)。保存之后重啟一下小程序,如果沒(méi)有報(bào)錯(cuò)的話就OK了
Immutable 是 Facebook 開(kāi)發(fā)的不可變數(shù)據(jù)集合。不可變數(shù)據(jù)一旦創(chuàng)建就不能被修改,是的應(yīng)用開(kāi)發(fā)更簡(jiǎn)單,允許使用函數(shù)式編程技術(shù),比如惰性評(píng)估。微信小程序無(wú)法直接使用 Immutable.js ,下面就來(lái)說(shuō)說(shuō)微信小程序如何使用第三方庫(kù) Immutable.js
(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : typeof define === 'function' && define.amd ? define(factory) : (global.Immutable = factory()); }(this, function () { 'use strict';var SLICE$0 = Array.prototype.slice; .... }));
修改 Immutable 代碼,注釋原有模塊導(dǎo)出語(yǔ)句,使用 module.exports = factory() 強(qiáng)制導(dǎo)出
(function(global, factory) { /* typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : typeof define === 'function' && define.amd ? define(factory) : (global.Immutable = factory()); */ module.exports = factory(); }(this, function() {
工作日 8:30-12:00 14:30-18:00
周六及部分節(jié)假日提供值班服務(wù)