本示例中不使用search.php,如何使用python方法返回數據?例如:是否有效:$ .getJSON(「{{data}}」,term:extractLast(request.term) },response);如何更改適用於python的jquery ui自動完成功能
$(function() {
function split(val) {
return val.split(/,\s*/);
}
function extractLast(term) {
return split(term).pop();
}
$("#birds")
// don't navigate away from the field on tab when selecting an item
.bind("keydown", function(event) {
if (event.keyCode === $.ui.keyCode.TAB &&
$(this).data("autocomplete").menu.active) {
event.preventDefault();
}
})
.autocomplete({
source: function(request, response) {
$.getJSON("search.php", {
term: extractLast(request.term)
}, response);
},
search: function() {
// custom minLength
var term = extractLast(this.value);
if (term.length < 2) {
return false;
}
},
focus: function() {
// prevent value inserted on focus
return false;
},
select: function(event, ui) {
var terms = split(this.value);
// remove the current input
terms.pop();
// add the selected item
terms.push(ui.item.value);
// add placeholder to get the comma-and-space at the end
terms.push("");
this.value = terms.join(", ");
return false;
}
});
});
你應該把代碼添加到search.php中,也許你已經有了任何python代碼。 – itsadok 2011-03-09 06:56:41
我認爲那不相關,因爲我沒有使用任何PHP設置。所以我絕對需要使用別的東西 – 2011-03-09 07:17:15
也許你應該澄清你的問題。看來你問的是如何在服務器端從php切換到python。如果情況並非如此,那麼我不知道你在問什麼。 – itsadok 2011-03-09 07:28:17