Global variable globalData When the mini program is initially created, the globalData parameter is added by default to the object passed into the App method in the app.js file. In all pages, we can use the getApp method to get the object passed in by the App method, and then get the globalData in it. const App = getApp(); const openId = App.globalData.openId; App.globalData.openId = 1; delete App.globalData.openId; The value of globalData is an object, and we can call it in the same way as an object. (globalData is not necessarily called this name) Page private variable dataThe js logic layer page of each page passes an object into the Page method. The value of data is generally used to store the variable value in the current page. Its main purpose is to interact with the view layer through the setData interface to change the display content of the wxml view layer. If you do not need to pass the value in data to the view layer, it is not recommended to use setData but to use object operation instead. Can effectively save performance. Page({ data: { openId: 123 }, localData: { timeStamp: Date.now() } }) this.setData({ openId: 321 }) this.data.openId = 321; this.localData.timeStamp = Data.now(); storageStorage is also a very common storage method in mini programs, similar to the global variable globalData. Not limited to a certain page, the value can be obtained anywhere through the interface provided by wx. The advantage is that the data can be stored for a long time and will not disappear even if you log out and log in again. (Upper storage limit 10M) Asynchronous storage (depending on the performance of the device, you really don’t know how long it will be stored)wx.setStorage({ key: 'key', data: 'value', success: res => { ... } }) // Support promises wx.setStorage({key: 'key', data: 'value'}) .then(res => { ... }) Synchronous storage (will cause blocking~)wx.setStorageSync('key', 'value') ... File Storage fileSysteManagerfileSysteManager (hereinafter referred to as fs) can store text and image data locally in the form of files. The storage limit is 10M (I remember it was 200M before, but later I saw 10 in the documents). It is stored for a long time and the mini program data will not disappear unless it is deleted. Write:const fs = wx.getFileSystemManager(); fs.writeFile({ filePath: `${wx.env.USER_DATA_PATH}/_l${fileName}.txt`, data: JSON.stringify(data), encoding: 'utf8', success(res) { ... } })
ReadKeep the file name and storage location in mind when accessing data; fs.readFile({ filePath: `${wx.env.USER_DATA_PATH}/_l${fileName}.txt`, encoding: 'utf8', position: 0, success(res) { JSON.parse(res.data) } }) Removefs.unlink({ filePath: `${wx.env.USER_DATA_PATH}/_l${fileName}.txt`, encoding: 'utf8', success(res) { ... } }) All fs operations are asynchronous, so pay attention to the processing logic. This is the end of this article about the implementation of data storage in WeChat Mini Programs. For more relevant Mini Program data storage content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: mysql charset=utf8 do you really understand what it means
>>: Nginx service 500: Internal Server Error one of the reasons
Table of contents Install Dependencies Configurat...
Docker-compose deploys gitlab 1. Install Docker I...
1. Grammar location [=|~|~*|^~|@] /uri/ { ... } 2...
Log in docker login Complete the registration and...
Table of contents 1. Build the Vue environment 2....
Table of contents 1. Use closures 2. Use ES6 clas...
Table of contents 1. Object 1.1 What is an object...
I have encountered a problem. When testing the ed...
1 Problem Description This article sorts the esta...
Mysql query time period intersection Usage scenar...
0x0 Test Environment The headquarters production ...
Table of contents 1. Shallow cloning 2. Deep clon...
9 great JavaScript framework scripts for drawing ...
This article example shares the specific code of ...
Ubuntu 18.04 installs mysql 5.7 for your referenc...