我試圖從API文件中拖出前15個字出現問題。使用We feel fine API試圖拉xml/json
XMLHttpRequest cannot load
No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'null' is therefore not allowed access.
林:我曾經嘗試都爲XML和JSON,仍然似乎得到這個錯誤。
這裏是我的代碼:
<script type="text/javascript">
(function() {
var WeFeelAPI = "http://api.wefeelfine.org:8080/ShowFeelings?display=json&returnfields=feeling,conditions&limit=15";
$.getJSON(WeFeelAPI,function (json){
var feel = json.results[15];
console.log('Our feelings : ', feel);
});
})();
</script>
任何幫助,將不勝感激,我很新的這一切,得益於
我不認爲它是正確的API感覺..有時它真的需要專注於獲得API的感受.. –
看起來他們不支持遠程JavaScript API ...或JSON響應(他們有純文本或XML只)根據此頁 - http://www.wefeelfine.org/api.html – Phil
嗯,我認爲我會奮鬥的任何意見,如何處理它? –