摘要:開發(fā)前需要安裝和以及一些需要用到的中間件如果在要使用的話,還需要引入這個(gè)庫或者使用示例下面通過實(shí)現(xiàn)一個(gè)快速上手。然后開始創(chuàng)建處理這兩個(gè)指令的。完成上述三步之后,我們就可以在應(yīng)用的主頁使用相應(yīng)修改并取得新的數(shù)據(jù)了。
本文適合有一定React和Redux基礎(chǔ)的用戶閱讀。前言的前言
最近被一款來自京東凹凸實(shí)驗(yàn)室的多終端開發(fā)框架Taro吸粉了,官方對 Taro 的簡介是使用React語法,一鍵生成多終端應(yīng)用(包括小程序 / H5 / 快應(yīng)用 / RN 等),而目前 Github 的 Star 也達(dá)到了非??捎^的數(shù)量:4k+。對此,筆者也嘗了把鮮,體驗(yàn)了下如何使用Taro寫微信小程序。感覺還是十分靈活易用(一氣呵成,都沒遇到bug?。?,并且 Taro 還集成了 Redux,解決了小程序沒有數(shù)據(jù)流框架的痛點(diǎn)。
這里貼一個(gè) Taro 的官方文檔,有興趣的同行們可以了解下~也可以和我交流~嘿嘿
前言Redux是JavaScript 狀態(tài)容器,提供可預(yù)測化的狀態(tài)管理。一般來說,規(guī)模比較大的小程序,頁面狀態(tài),數(shù)據(jù)緩存,需要管理的東西太多,這時(shí)候引入Redux可以方便的管理這些狀態(tài),同一數(shù)據(jù),一次請求,應(yīng)用全局共享。
而Taro也非常友好地為開發(fā)者提供了移植的Redux。
依賴為了更方便地使用Redux,Taro提供了與react-redux API 幾乎一致的包 @tarojs/redux 來讓開發(fā)人員獲得更加良好的開發(fā)體驗(yàn)。
開發(fā)前需要安裝redux和@tarojs/redux以及一些需要用到的中間件
ps:如果在h5要使用redux的話,還需要引入nerv-redux這個(gè)庫
$ yarn add redux @tarojs/redux redux-action redux-logger # 或者使用 npm $ npm install --save redux @tarojs/redux redux-action redux-logger示例
下面通過實(shí)現(xiàn)一個(gè)Todolist快速上手Redux。
1. 目錄結(jié)構(gòu)首先通過目錄劃分我們的store/reducers/actions。
分別在文件夾里創(chuàng)建index.js,作為三個(gè)模塊的主文件。reducers和actions里面的內(nèi)容我們需要規(guī)劃好功能之后再來處理。
// store/index.js import { createStore, applyMiddleware } from "redux" // 引入需要的中間件 import thunkMiddleware from "redux-thunk" import { createLogger } from "redux-logger" // 引入根reducers import rootReducer from "../reducers" const middlewares = [ thunkMiddleware, createLogger() ] // 創(chuàng)建store export default function configStore () { const store = createStore(rootReducer, applyMiddleware(...middlewares)) return store }2. 編寫Todos
首先在app.js中引入一開始定義好的store,使用@tarojs/redux中提供的Provider組件將前面寫好的store接入應(yīng)用中,這樣一來,被Provider包裹的頁面都能共享到應(yīng)用的store。
import Taro, { Component } from "@tarojs/taro" import { Provider } from "@tarojs/redux" import configStore from "./store" import Index from "./pages/index" import "./app.scss" const store = configStore() class App extends Component { ... render () { return () } }
接下來就可以正式開始規(guī)劃Todos應(yīng)用的主要功能了。
首先我們可以新建constants文件夾來定義一系列所需的action type常量。例如Todos我們可以先新增ADD和DELETE兩個(gè)action type來區(qū)分新增和刪除Todo指令。
// src/constants/todos.js export const ADD = "ADD" export const DELETE = "DELETE"
然后開始創(chuàng)建處理這兩個(gè)指令的reducer。
// src/reducers/index.js import { combineReducers } from "redux" import { ADD, DELETE } from "../constants/todos" // 定義初始狀態(tài) const INITIAL_STATE = { todos: [ {id: 0, text: "第一條todo"} ] } function todos (state = INITIAL_STATE, action) { // 獲取當(dāng)前todos條數(shù),用以id自增 let todoNum = state.todos.length switch (action.type) { // 根據(jù)指令處理todos case ADD: return { ...state, todos: state.todos.concat({ id: todoNum, text: action.data }) } case DELETE: let newTodos = state.todos.filter(item => { return item.id !== action.id }) return { ...state, todos: newTodos } default: return state } } export default combineReducers({ todos })
接著在action中定義函數(shù)對應(yīng)的指令。
// src/actions/index.js import { ADD, DELETE } from "../constants/todos" export const add = (data) => { return { data, type: ADD } } export const del = (id) => { return { id, type: DELETE } }
完成上述三步之后,我們就可以在Todos應(yīng)用的主頁使用相應(yīng)action修改并取得新的store數(shù)據(jù)了。來看一眼Todos的index.js。
// src/pages/index/index.js import Taro, { Component } from "@tarojs/taro" import { View, Input, Text } from "@tarojs/components" import { connect } from "@tarojs/redux" import "./index.scss" import { add, del } from "../../actions/index" class Index extends Component { config = { navigationBarTitleText: "首頁" } constructor () { super () this.state = { newTodo: "" } } saveNewTodo (e) { let { newTodo } = this.state if (!e.detail.value || e.detail.value === newTodo) return this.setState({ newTodo: e.detail.value }) } addTodo () { let { newTodo } = this.state let { add } = this.props if (!newTodo) return add(newTodo) this.setState({ newTodo: "" }) } delTodo (id) { let { del } = this.props del(id) } render () { // 獲取未經(jīng)處理的todos并展示 let { newTodo } = this.state let { todos, add, del } = this.props const todosJsx = todos.map(todo => { return () }) return ( {todo.text} - ) } } export default connect (({ todos }) => ({ todos: todos.todos }), (dispatch) => ({ add (data) { dispatch(add(data)) }, del (id) { dispatch(del(id)) } }))(Index) + { todosJsx }
最后來看一眼實(shí)現(xiàn)的效果~~
文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請注明本文地址:http://systransis.cn/yun/95578.html
摘要:作為兩個(gè)小程序開發(fā)框架都使用過,并應(yīng)用在生產(chǎn)環(huán)境里的人,自然是要比較一下兩者的異同點(diǎn)。在這里與當(dāng)前很流行的小程序開發(fā)框架之一進(jìn)行簡單對比,主要還是為了方便大家更快速地了解,從而選擇更適合自己的開發(fā)方式。 前言 前陣子,來自我們凹凸實(shí)驗(yàn)室的遵循 React 語法規(guī)范的多端開發(fā)方案 - Taro終于對外開源了,歡迎圍觀star(先打波廣告)。作為第一批使用了Taro開發(fā)的TOPLIFE小程...
摘要:多端統(tǒng)一開發(fā)框架優(yōu)秀學(xué)習(xí)資源匯總官方資源項(xiàng)目倉庫官方文檔項(xiàng)目倉庫官方文檔微信小程序官方文檔百度智能小程序官方文檔支付寶小程序官方文檔字節(jié)跳動(dòng)小程序官方文檔文章教程不敢閱讀包源碼帶你揭秘背后的哲學(xué)從到構(gòu)建適配不同端微信小程序等的應(yīng)用小程序最 Awesome Taro 多端統(tǒng)一開發(fā)框架 Taro 優(yōu)秀學(xué)習(xí)資源匯總 showImg(https://segmentfault.com/img/r...
摘要:個(gè)人所有文章同步到前言最近公司準(zhǔn)備開發(fā)幾款可以在微信小程序端和端同時(shí)運(yùn)行的一套商城,接著就是任務(wù)下發(fā)嘍,但是有一點(diǎn),時(shí)間緊任務(wù)重,直接說其他的不管,反正幾個(gè)星期之內(nèi)必須上線,頭疼。 個(gè)人所有文章同步到:https://github.com/zhengzhuan... 前言 最近公司Boss準(zhǔn)備開發(fā)幾款可以在微信小程序端和H5端同時(shí)運(yùn)行的一套商城,接著就是任務(wù)下發(fā)嘍,但是有一點(diǎn),時(shí)間緊任...
摘要:第一步安裝鏈接安裝完成后在命令行輸入,顯示版本號即安裝成功,如下圖第二步安裝在命令行輸入或在這里我用的是,感謝阿里提供的國內(nèi)鏡像安裝完成后入下圖所示輸入,會顯示當(dāng)前安裝的版本,如下圖第三步使用命令創(chuàng)建模板項(xiàng)目打開目標(biāo)文件夾后輸入命令 第一步:安裝node.js(鏈接https://nodejs.org/en/) 安裝完成后在命令行輸入node -v,顯示版本號即安裝成功,如下圖 sh...
閱讀 3789·2023-04-25 21:09
閱讀 3136·2021-10-20 13:48
閱讀 3044·2021-09-24 10:25
閱讀 2942·2021-08-21 14:08
閱讀 1799·2019-08-30 15:56
閱讀 989·2019-08-30 15:52
閱讀 1856·2019-08-29 14:11
閱讀 3574·2019-08-29 11:01