页面是UTF-8编码,JSONP获取到的是GBK编码的数据,请问该如何转换?
demo
这是QQ音乐的一个接口:
http://music.qq.com/musicbox/shop/v3/data/hit/hit_all.js
用jq确实获取到了数据:
$.ajax({ type: "get", async: false, url: "http://music.qq.com/musicbox/shop/v3/data/hit/hit_newsong.js", dataType: "jsonp", jsonp: "callback", jsonpCallback: "JsonCallback", // contentType: "application/jsonp; charset=utf-8", // cscriptCharset: 'utf-8', success: function(data) { console.log(JSON.stringify(data)) // console.log(decodeURI(encodeURI(JSON.stringify(data)))) }, error: function() { alert('fail'); } });
虽然可以把自己网页改为GBK编码,但不想这样做,注释里是我做的一些尝试,都没用用,请问这种情况下该怎么转换编码?
谢谢了!
holdtom
相关分类