fetch jsonp请求接口
Posted dongruiha
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了fetch jsonp请求接口相关的知识,希望对你有一定的参考价值。
function loadTbbRec() { var fetchJsonp = require(‘fetch-jsonp‘); fetchJsonp(ext.info.tbbRecUrl, { headers: { ‘Content-type‘: ‘application/x-www-form-urlencoded; charset=UTF-8‘ }, jsonpCallback: ‘callback‘, credentials: ‘include‘ }).then(function (res) { var obj = res.json(); obj.then(function(data) { var str = ‘‘; var i; for (i in data) { } $(‘#carlist‘).append(str); }); }).then(function (data) { console.log(data); }); }
以上是关于fetch jsonp请求接口的主要内容,如果未能解决你的问题,请参考以下文章