if(typeof fetch === 'function' && typeof window.fetch === 'function') {
// 支持
}
if(typeof fetch !== 'function' || typeof window.fetch !== 'function') {
// 不支持
}
var req = new Request('/data.json', {method: 'POST', cache: 'reload'});
fetch(req).then(function(res) {
return res.json();
}).then(function(data){
console.log(data);
});