The usage of the WeChat mini-program setData is described in detail, and the mini-program setdata

Source: Internet
Author: User

The usage of the setData applet is described in detail.

How to Use the setData Applet

Recently, the following problems were encountered when using the setData of the applet. As follows:

When setData () is used to set attributes of an element of an array object, the official website uses the following code:

Page ({data: {array: [{text: 'init data'}] ,}, changeItemInArray: function () {this. setData ({'array [0]. text ': 'changed data '})}})

The value 'array [0]. text': 'changed data' is used. However, in actual use, we set an element in the array dynamically. That is, we usually should be 'array ['+ index +']. text': 'changed data', where index should be a dynamic number. But obviously, this is not available in the key of the object.

Therefore, I can only use a work und. As follows:

Var param = {}; var string = "array [" + index + "]. text; param [string] = 'changed data'; that. setData (param );

That is, prepare the object in advance.

I hope there will be better methods in the future.

Thank you for reading this article. I hope it will help you. Thank you for your support for this site!

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.