2017-07-31 96 views

回答

2

可以使用javascript在建造功能fetch

fetch(url) 
    .then(function(data) { 
    // Here you get the data to modify as you please 
    }) 
    }) 
    .catch(function(error) { 
    // If there is any error you will catch them here 
    }); 

看看這個link

相關問題