【HAVENT原创】superagentCallback*** is not defined

£可爱£侵袭症+ 提交于 2019-12-06 21:17:14

在使用 superagent-jsonp 跨域调用过程中,直接报错:Uncaught ReferenceError: superagentCallback*** is not defined

根本原因是callback已经被浏览器回收了,通过设置timeout时间该问题可以解决

.use(jsonp({timeout: 10000}))

调用示例代码如下:

import request from 'superagent'
import jsonp from 'superagent-jsonp'

const state = {
    body: {}
};

const mutations = {
    getMovies (state, response) {
        switch (response.tag) {
            case 'hotMovies':
                state.body = response;
                break;

            default:
                state.body = response;
        }
    }
};

const actions = {
    getMovies ({ commit }, params) {
        request
            .get('https://api.douban.com/v2/movie/in_theaters?count=8')
            .accept('json')
            .use(jsonp({timeout: 10000}))
            .end((err, res) => {
                if (!err) {
                    commit({
                        type: 'getMovies',
                        tag: 'hotMovies',
                        res: res.body
                    })
                    console.log(res.body);
                } else {
                    console.log(err);
                }
            })
    }

};

export default {
    state,
    mutations,
    actions
}

 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!