WeChat Mini Programs, how to call this.setData? in other js files

util.js
export let add = () = > {

this.setData({
    index: 123
})

}

Mar.07,2021

you can change the this direction with things like apply, and add uses ordinary functions.

export let add = function () {.}

const util=require ('.');

util.add.apply (this)

Menu