Heading for the future

wepy里面两种不同的写回调函数的方法

方案一
const getHelpCenter = createAction(GET_HELP_CENTER, () => request('api/hisense/article/menu/list?menuId=4'))
方案二 const searchHelpCenter = createAction(GET_HELP_CENTER, async (key, callback) => { const res = await request('api/hisense/article/menu/list?menuId=4') callback(res) })

引用时(特别注意:这两段只是代码片段,只看用的格式就好)

方案一的引用    
this.methods.getHelpCenter().then(() => {
    })

方案二的引用
this.searchHelpCenter(value, (res) => {
})

  

posted @ 2019-03-08 13:03  一只菜鸟攻城狮啊  阅读(422)  评论(0编辑  收藏  举报