猿问

mui开发网易云音乐,请求接口总是跨域

/***************************************************************

 *                                                             *

 * mui.ajax获取数据                                                                                                                   *

 *                                                             *

/***************************************************************/

var url = 'http://s.music.163.com/search/get/';

mui.ajax(url, {

    data: {

        'type': 1,

        's': '喜欢你',

        'limit': 10

    },

    dataType: 'json',

    type: 'post',

    timeout: 10000,

    success: function(response) {

        console.log(JSON.stringify(response))

    },

    error: function(xhr, type, errorThrown) {

        console.log(type)

    }


})

用segmentfault的有个mui教程去练习的时候,在浏览器打开总是报跨域的错误,是接口不能用了么?还是其它原因

慕仙森
浏览 831回答 1
1回答

ABOUTYOU

浏览器打开的,这样会跨域,如果拿到真机上面运行就不会出现跨域问题了
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答