我正在尝试为 Pebble 编写一个简单的表盘,并且遇到了这个 javascript 错误。
我正在从http://rate-exchange.appspot.com/currency?from=usd&to=jpy获取信息
代码如下所示:
function HTTPGET(url) {
var req = new XMLHttpRequest();
req.open("GET", url, false);
req.send(null);
return req.responseText;
}
var getWeather = function() {
var lhs1 = "usd";
var rhs1 = "jpy";
var url1 = "rate-exchange.appspot.com/currency?from=" + lhs1 + "&to=" + rhs1
console.log(url1);
var response1 = HTTPGET(url1);
var json1 = JSON.parse(response1);
等等,它继续,但你明白了。
我明白了
[PHONE] pebble-app.js:?: JS: where.is.spot: rate-exchange.appspot.com/currency?from=usd&to=jpy
[PHONE] pebble-app.js:?: Error: where.is.spot: Invalid URL at line 4 in pebble-js-app.js
这在第 4 行失败:req.send(null);
知道是什么导致了这个错误吗?饲料似乎没有任何问题。