Fixing ajax queries
This commit is contained in:
parent
99673fcb5e
commit
ae6c6f8d16
@ -210,37 +210,12 @@ function onQuery() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
// $.ajax({
|
$.getJSON('http://localhost/node/hscd/keywords', { }, function(data) {
|
||||||
// url: 'http://localhost:3000/hscd/keywords',
|
for (var keyword in data) {
|
||||||
// type: 'POST',
|
$('#query').append($('<option></option>', {
|
||||||
// contentType: "application/json; charset=utf-8",
|
'value': keyword,
|
||||||
// dataType: 'script',
|
'text': keyword
|
||||||
// data: {'foo': 'bar'},
|
}));
|
||||||
// error: function() { alert('Failed'); },
|
}
|
||||||
// success: function(data) { alert(typeof(data)); }
|
|
||||||
// });
|
|
||||||
|
|
||||||
// $.post("http://localhost:3000/hscd/keywords", {}, function(result){ alert(result);}, "json");
|
|
||||||
|
|
||||||
// $.ajax({
|
|
||||||
// url: 'http://twitter.com/status/user_timeline/padraicb.json?count=10',
|
|
||||||
// dataType: 'script',
|
|
||||||
// success: function(data) { alert(data); }
|
|
||||||
// });
|
|
||||||
|
|
||||||
$.getJSON('http://localhost:3000/hscd/keywords?callback=?', {'foo': 1}, function(data) {
|
|
||||||
alert('Data returned ' + Object.keys(data));
|
|
||||||
});
|
});
|
||||||
|
|
||||||
// for (var keyword in data) {
|
|
||||||
// $('#query').append($('<option></option>', {
|
|
||||||
// 'value': keyword,
|
|
||||||
// 'text': keyword
|
|
||||||
// }));
|
|
||||||
// }
|
|
||||||
|
|
||||||
// $('#search').click(onQuery);
|
|
||||||
// }).fail(function(d, textStatus, error) {
|
|
||||||
// console.error("getJSON failed, status: " + textStatus + ", error: "+error)
|
|
||||||
// });
|
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user