gpt4 book ai didi

Jquery UI 自动完成 MultiSelect 不起作用

转载 作者:行者123 更新时间:2023-12-01 05:32:29 25 4
gpt4 key购买 nike

我想出了这个问题,我进行了很多搜索,并尝试了各种方法来解决我的问题,但没有任何回应。我想使用自动完成在文本框中选择多个值,但我添加第一个项目自动完成在添加第一个值后不会加载值,如图所示。我的代码如下

function split(val) {
return val.split(/,\s*/);
}

function AutoCompleteMrnPatient() {
$('#patientmrntxts').autocomplete({
source: function (request, reponse) {
$.ajax({
url: "/DoctorAssessment/GetmrnNumber",
type: "GET",
dataType: "json",
data: { term: request.term },
success: function (data) {
reponse($.map(data, function (item) {
return { label: item.label, value: item.value };
}));
}
});
},
focus: function () {
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;
}
});
}

enter image description here

最佳答案

我有机会稍微看看这个。我做出以下假设和观察:

  • 您只需要唯一的值,没有重复的值 - 因此我只保留唯一的新值
  • 您的值不包含逗号 - 这会使分割函数变得复杂
  • 您可能需要跟踪这些值并利用它们执行某些操作。因此,我将它们插入一个名为“holder”的数组中 - 请注意,如果您从列表中删除选择,我不会删除值 - 您可以使用我提供的函数来执行此操作(一种查找并删除它们的方法等)。 )
  • 您必须确定是否要显示商品的值(value)或标签。
  • 我没有对您提供的标签/值对进行适当的值测试,因此我创建了一个。我假设你的 ajax 可以工作 - 所以我在测试中注释掉了它并使用了我创建的对象列表的源。
  • 您的源代码中将“response”错误地拼写为“reponse”,但我没有修复该问题。
  • AutoCompleteMrnPatient 基本上与文档就绪处理程序相同。

代码:(包括设置、对象列表上的一些实用功能以及您需要的代码。)

// just for a testable solution (source)
var availableTags = [
"AppleScript",
"AppleScript",
"Apple-Script",
"Apple Script",
"AppleScript",
"Asp",
"BASIC",
"C",
"C++",
"Clojure",
"COBOL",
"ColdFusion",
"Erlang",
"Fortran",
"Groovy",
"Haskell",
"Java",
"JavaScript",
"Lisp",
"Perl",
"PHP",
"Python",
"Ruby",
"Scala",
"Scheme"
];
// create a new array of label/value to match the question
// http://stackoverflow.com/questions/36452275/jquery-ui-autocomplete-multiselect-not-working
var newarr = [];
for (var a = 0; a < availableTags.length; a++) {
newarr.push({
label: availableTags[a],
value: availableTags[a] + "v" + a
});
}

功能部分:

// some namespaced functions to use
var myApp = myApp || {};
myApp.arrayObj = {
indexOf: function(myArray, searchTerm, property) {
for (var i = 0; i < myArray.length; i++) {
if (myArray[i][property] === searchTerm) return i;
}
return -1;
},
indexAllOf: function(myArray, searchTerm, property) {
var ai = [];
for (var i = 0; i < myArray.length; i++) {
if (myArray[i][property] === searchTerm) ai.push(i);
}
return ai;
},
lookup: function(myArray, searchTerm, property, firstOnly) {
var found = [];
for (var i = 0; i < myArray.length; i++) {
if (myArray[i][property] === searchTerm) {
found.push(myArray[i]);
if (firstOnly) break; //if only the first
}
}
return found;
},
lookupAll: function(myArray, searchTerm, property) {
return this.lookup(myArray, searchTerm, property, false);
},
remove: function(myArray, searchTerm, property, firstOnly) {
for (var i = myArray.length - 1; i >= 0; i--) {
if (myArray[i][property] === searchTerm) {
myArray.splice(i, 1);
if (firstOnly) break; //if only the first term has to be removed
}
}
}
};
myApp.func = {
split: function(val) {
return val.split(/,\s*/);
},
extractLast: function(term) {
return this.split(term).pop();
}
};

// test a lookup
//var ai = myApp.arrayObj.lookupAll(newarr, "AppleScript", "label");
//console.dir(ai);

// test an index of an item
//var myi = myApp.arrayObj.indexOf(newarr, "AppleScript", "label");
//console.log(myi);

// test remove of item match (all of them)
// var removeFirstOnly = false;
//myApp.arrayObj.remove(newarr, "AppleScript", "label", removeFirstOnly);
//console.dir(newarr);


// put the result objects in this array
var holder = [];

function AutoCompleteMrnPatient() {
$('#patientmrntxts').autocomplete({
source: function(request, response) {
// delegate back to autocomplete, but extract the last term
response($.ui.autocomplete.filter(
newarr, myApp.func.extractLast(request.term)));
},
/* commented out and use the source above
source: function(request, reponse) {
$.ajax({
url: "/DoctorAssessment/GetmrnNumber",
type: "GET",
dataType: "json",
data: {
term: request.term
},
success: function(data) {
reponse($.map(data, function(item) {
return {
label: item.label,
value: item.value
};
}));
}
});
},
*/
focus: function() {
return false;
},
select: function(event, ui) {
// put this in a "holder" array if not in there already
var exists = myApp.arrayObj.indexOf(holder, ui.item.value, "key");
if (exists === -1) {
var entry = {
key: ui.item.value,
term: myApp.func.extractLast(this.value),
item: ui.item
};
holder.push(entry);
}
console.dir(holder);
var terms = myApp.func.split(this.value); // contains entry ex:"Asp, b"
// remove the current input
terms.pop();
// check if duplicate and if not push it in
if (exists === -1) {
//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;
}
}).data("uiAutocomplete")._renderItem = function(ul, item) {
return $("<li></li>")
.data("item.autocomplete", item.label)
.attr("data-value", item.value)
.append("<a>" + item.label + "</a>")
.appendTo(ul);
};
}
AutoCompleteMrnPatient();

以下是上述工作的示例:https://jsfiddle.net/xvu9syuf/1/

关于Jquery UI 自动完成 MultiSelect 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36452275/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com