我想從這個網站 https://bitcoinindex.es/api/v0.1/coinbase/usd/btc/lastCORS不適用於Angular?
GET信息使用$ http服務
尋找所有在互聯網上以後這裏是我的CoffeeScript代碼
angular.module('blackmoonApp')
.controller 'PricingCtrl', ($scope, $http) ->
$http.defaults.useXDomain = true
$http.get("https://bitcoinindex.es/api/v0.1/coinbase/usd/btc/last",
headers:
"Access-Control-Allow-Origin": "*"
).success (JSON) ->
console.log JSON
結果是
"XMLHttpRequest cannot load https://www.bitstamp.net/api/ticker/. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:9000' is therefore not allowed access."
我不確定網站是否阻止了我(哪個wou沒有道理,因爲它是一個API),或者如果AngularJS不能使用CORS。
這是一個公共API,雖然文檔在這裏https:// bitcoinindex。es/api – grasshopper 2014-09-26 20:39:03