请问在小程序中如何从请求success中将数据返回给对象data?

我的代码如下:

App({
    data: {
        posts: {}
    },
    onLaunch(event) {
        // console.log('onLaunch');
        var that = this;
        swan.request({
            url: 'http://www.sfatpaper.com/content.json',
            success: function (res) {
                console.log(res.data);
                that.setData({
                    posts: res.data.posts
                });
            },
            fail: function (err) {
                console.log('错误码:' + err.errCode);
                console.log('错误信息:' + err.errMsg);
            }
        })      
    }
});

通过ajax,目前可以顺利读取接口数据,其中posts的数据有两项

posts:Array(2)    0:Object
    1:Object

我想通过that.setData将数据传给外层的data对象,以便其他页面调用
但是报错显示:

Uncaught (in promise) TypeError: that.setData is not a function

还望指正,问题出在那里呢?谢谢!


尚方宝剑之说
浏览 887回答 1
1回答

动漫人物

App没有setData, 直接用this.globalDataPage才有 评论 · 2
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript