我在Android上使用Cordova 5.1.1 CordovaHTTP plugin。我收到此错误:未捕获的ReferenceError:未定义cordovaHTTP。我在cordova.js引用之后将此脚本插入索引页的正文中。
cordovaHTTP.get("https://google.com/", {
id: 12,
message: "test"
}, { Authorization: "OAuth2: token" }, function(response) {
console.log(response.status);
alert(respose.status);
}, function(response) {
console.error(response.error);
alert(response.error);
});