const app = getApp()
Page({
bottomModal()
})
function bottomModal() {
this.setData({ modalName: 'bottomModal'
})
请教各位大神,我在Page外自定义function,怎么才能通过setData设置数据呢?
const app = getApp()
Page({
bottomModal()
})
function bottomModal() {
this.setData({ modalName: 'bottomModal'
})
请教各位大神,我在Page外自定义function,怎么才能通过setData设置数据呢?
2 个回答
this 传进来试试
可以👌
获取页面实例
谢谢