我正在使用jQuery Mobile从存储在数据库中的信息中填充一系列列表视图,每个列表视图以父子关系填充以下列表视图(例如:第一个列表视图允许您选择动物,您选择狗,下一个列表视图中填充了谱系等)。
现在我的代码正确地填充了列表视图,我遇到的问题是,如果我返回父列表视图并做出不同的选择,子列表视图不会刷新,我们最终会得到一堆附加信息。我到处都读过很多书,但我似乎无法为我的代码找到合适的实现。
<ul data-role="listview" data-filter="false" data-inset="true" data-theme="a" data-divider-theme="a">
<li>
<label for="pet" class="select">Pet</label>
<select id="pet" data-mini="true" onchange="fill_list('pedigree', this);">
<option value=""></option>
</select>
</li>
<li>
<label for="pedigree" class="select">Pedigree</label>
<select id="pedigree" data-mini="true" onchange="fill_list('pet_name', this);">
<option value=""></option>
</select>
</li>
<li>
<label for="pet_name" class="select">Pet Name</label>
<select id="pet_name" data-mini="true">
<option value=""></option>
</select>
</li>
</ul>
function fill_list(next_list, this_list){
var pet_url = server_root_url + 'controler/pet/find_pet.php';
var value = this_list.options[this_list.selectedIndex].value;
var params = {
control: next_list,
value: value
};
$.ajax({
type: "POST",
url: pet_url,
async:false,
data: params,
success: function(json){
do_fill_list(json, next_list);
}
});
}
function do_fill_list(json, next_list){
var x = "#" + next_list;
var option = $(x);
/*------------------------------------------------------------------------------
EDIT:
Below is the solution I found for this issue.
Basically we capture the current list with the switch, empty it,
append it with a blank line, then let the rest of the code populate the list.
-------------------------------------------------------------------------------*/
switch(next_list){
case "pet":
options.html("").append("<option />");
break;
case "pedigree":
options.html("").append("<option />");
break;
case "pet_name":
options.html("").append("<option />");
break;
}
//-------------------------------------END EDIT------------------------------------
$.each(json.control,
function(i,control){
switch(next_list){
case "pet":
option.append($("<option />").val(control.pet).text(control.pet));
break;
case "pedigree":
option.append($("<option />").val(control.pedigree).text(control.pedigree));
break;
case "pet_name":
options.append($("<option />").val(control.pet_name).text(control.pet_name));
break;
}
}
);
}
请注意,我调用了一个 PHP 函数来处理数据的后端获取,但如果您需要对其进行测试,您可以对这些数据进行硬编码。另外,我在最后一个 JS 函数中有一个注释行,我已经阅读了很多内容:刷新方法,应该实现它来解决我的问题。我已经尝试了无数种方法来做到这一点,显然还不够。
编辑:我添加了一个解决此问题的 switch 语句,它位于“do fill list”JS 方法中。