I'm trying to convert my code to Mootools (I like the coding paradigm better).
I am doing cross-domain AJAX where I own both domains (closed network). I am just requesting simple JSON from my server. I get these errors in Mootools (jQuery works):
Resource interpreted as Script but transferred with MIME type text/plain.
Uncaught SyntaxError: Unexpected token :
var url = http://localhost:3000/
Server:
var http = require('http'),
json = {"hi" : false};
http.createServer(function(req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end(JSON.stringify(json));
}).listen(3000, function() {
console.log("Server on " + 3000);
});
jQuery:
$.ajax({
url: url,
type: "GET",
dataType: 'json',
success: function (data) {
}
});
Mootools:
var myRequest = new Request.JSONP({
url: url,
onComplete: function (data) {
alert(JSON.stringify(data));
}
});
myRequest.send();
I've tried adding these headers to no avail.:
'Accept': 'application/json',
'Content-Type': 'application/json'
This seems to be a client-side thing and not a server-side thing since it works in jQuery.