Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to realize Redux binding in WeChat Mini Programs

2025-02-23 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)05/31 Report--

This article mainly introduces the relevant knowledge of "how to achieve Redux binding in WeChat Mini Programs". The editor shows you the operation process through an actual case. The operation method is simple, fast and practical. I hope this article "how to achieve Redux binding in WeChat Mini Programs" can help you solve the problem.

WeChat Mini Programs Redux binding instance

Installation

Clone or download the code base locally:

Git clone https://github.com/charleyw/wechat-weapp-redux

Copy the dist/wechat-weapp-redux.js (or copy minify) file directly into the Mini Program project, for example (suppose we install all the third-party packages in the libs directory):

Cd wechat-weapp-redux cp-r dist/wechat-weapp-redux.js / libs

The above command copies the package to the libs directory of Mini Program

Use

1. Bind Redux Store to App.

Const store = createStore (reducer) / / redux store const WeAppRedux = require ('. / libs/wechat-weapp-redux/index.js'); const {Provider} = WeAppRedux

Provider is used to bind the store of Redux to App.

App (Provider (store) ({onLaunch: function () {console.log ("onLaunch")}})

The implementation of provider is simply to add store to the global object App so that it can be easily extracted from the page with getApp.

The above code is equivalent to:

App ({onLaunch: function () {console.log ("onLaunch")}, store: store})

two。 Use connect on the definition of the page and bind redux store to the page.

Const pageConfig = {data: {},...}

Definition of the page

Const mapStateToData = state = > ({todos: state.todos, visibilityFilter: state.visibilityFilter})

Define which state to map to the page

Const mapDispatchToPage = dispatch = > ({setVisibilityFilter: filter = > dispatch (setVisibilityFilter (filter)), toggleTodo: id = > dispatch (toggleTodo (id)), addTodo: text = > dispatch (addTodo (text)),})

Define which methods to map to the page

Const nextPageConfig = connect (mapStateToData, mapDispatchToPage) (pageConfig)

Use connect to add the above definition to pageConfig.

Page (nextPageConfig)

Register the page of Mini Program

3. Description

After completing the above two steps, you can access the data you defined in mapStateToData in this.data.

The action defined by mapDispatchToPage is mapped to the this object.

This is the end of the introduction on "how to achieve Redux binding in WeChat Mini Programs". Thank you for your reading. If you want to know more about the industry, you can follow the industry information channel. The editor will update different knowledge points for you every day.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report