I am trying get a json with Sencha Touch from a cross-domain node.js
my node.js code:
app.get('/login', function (req, res) {
console.log("Request handler random was called.");
res.header("Access-Control-Allow-Origin", "*");
res.header("Access-Control-Allow-Headers", "X-Requested-With");
res.writeHead(200, {"Content-Type": "application/json"});
var otherArray = ["item1", "item2"];
var otherObject = { item1: "item1val", item2: "item2val" };
var json = JSON.stringify({
anObject: otherObject,
anArray: otherArray,
another: "item"
});
res.end(json);
});
here the code works fine: http://still-stream-9036.herokuapp.com/login
but when i try to get with sencha touch i got:
(failed)
Invalid HTTP status code 404
I found the solution here:
// Enables CORS
Font: stackoverflow.com/questions/21236954/sencha-touch-post-to-node-js-error