JQuery 从 XML 自动完成
我正在玩 jquery ui 自动完成。还有一个关于如何查询XML数据的问题。我有一个包含位置列表的 XML 文件,类似于:
<geoname>
<name_en>The Tower of London</name_en>
<name_fr>Example text</name_fr>
<lat>51.5082349601834</lat>
<lng>-0.0763034820556641</lng>
<geonameId>6286786</geonameId>
<countryCode>GB</countryCode>
<countryName>United Kingdom</countryName>
<fcl>S</fcl>
<fcode>CSTL</fcode>
<web>http://www.exmaple.com</web>
</geoname>
我的 jQuery 是:
jQuery(document).ready(function() {
lang = 'en';
$.ajax({
url: "places.xml",
dataType: "xml",
success: function( xmlResponse ) {
var data = $( "countryCode", xmlResponse ).map(function() {
return {
value: $( "name", this ).text(),
id: $( "geonameId", this ).text(),
countryName: $( "countryName", this ).text(),
link: $( "web", this ).text(),
code: $( "countryCode", this ).text()
};
}).get();
$( "#results" ).autocomplete({
source: data,
minLength: 0,
select: function( event, ui ) {
$('#foo').html('');
$('#foo').html(ui.item.code).slideDown();
}
});
}
});
});
我遇到的问题是,我想指定一个变量,当我将其设置为 EN 时,该变量仅表示搜索 name_en,并且在其他情况仅在设置为 FR 时搜索 name_fr。当我将语言设置为 EN 时,我不希望 name_fr 结果返回。提前致谢。
I'm playing around with jquery ui autocomplete. And have a question about how to query the XML data. I have an XML file with a list of locations, similar to:
<geoname>
<name_en>The Tower of London</name_en>
<name_fr>Example text</name_fr>
<lat>51.5082349601834</lat>
<lng>-0.0763034820556641</lng>
<geonameId>6286786</geonameId>
<countryCode>GB</countryCode>
<countryName>United Kingdom</countryName>
<fcl>S</fcl>
<fcode>CSTL</fcode>
<web>http://www.exmaple.com</web>
</geoname>
And my jQuery is:
jQuery(document).ready(function() {
lang = 'en';
$.ajax({
url: "places.xml",
dataType: "xml",
success: function( xmlResponse ) {
var data = $( "countryCode", xmlResponse ).map(function() {
return {
value: $( "name", this ).text(),
id: $( "geonameId", this ).text(),
countryName: $( "countryName", this ).text(),
link: $( "web", this ).text(),
code: $( "countryCode", this ).text()
};
}).get();
$( "#results" ).autocomplete({
source: data,
minLength: 0,
select: function( event, ui ) {
$('#foo').html('');
$('#foo').html(ui.item.code).slideDown();
}
});
}
});
});
What I'm having trouble with is that I want to specify a variable that says only search name_en when I've set it to EN, and in other cases only search for name_fr when set to FR. I don't want name_fr results to come back when I've set the language to EN. Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,我将发布代码:
HTML
XML
JS
这是我测试过的 JSFiddle 解决方案
http://jsfiddle.net/pinusnegra/KFHnd/
这有点乱,但你可以做得更好,如果你想要的。我告诉你它是如何工作的:
首先,你会收到一个“geoname”节点列表,我认为,不仅仅是一个:
你得到 name_en 和 name_fr 值,并将“value”设置为空字符串(“value”将是 jQuery 自动完成文本)。
在 jQuery 自动完成中,您可以为源设置一个函数,该函数具有一个“req”对象和一个“add”回调。
“req”对象包含一个“term”属性,它是实际的文本框输入。 “add”回调添加匹配项的列表(数组)。
因此,您初始化一个“source”数组:
然后迭代“data”数组,并根据当前的“lang”,使用实际的“name_en”或“name_fr”设置“value”属性。
之后,您可以测试“object.value”是否符合要求:
如果符合,则推入“source”数组。
和...
添加(来源);
“返回”实际列表。
请注意,每次发生新的自动完成搜索时,都会调用自动完成对象的源函数,因此每次都会返回正确的项目集合。
当然,如果这个解决方案满足您的要求,您可以制定更复杂和优化的解决方案。
干杯,内格拉
First, I'll post the code:
HTML
XML
JS
And here is a JSFiddle solution I tested
http://jsfiddle.net/pinusnegra/KFHnd/
It's a little messy, but you can make it better if you want. I tell you how it works:
First, you receive a list of 'geoname' nodes I think, not only one:
You get the name_en and name_fr value, and you set the 'value' to an empty string (the 'value' will be the jQuery autocomplete text).
In jQuery autocomplete, you can set a function to the source, which has a 'req' object, and an 'add' callback.
The 'req' object contains a 'term' property, which is the actual textbox input. The 'add' callback adds a list (an array) of the matched items.
So you initialize a 'source' array:
then you iterate over the 'data' array, and based on the current 'lang', setup the 'value' property with the actual 'name_en' or 'name_fr'.
After this, you can test on the 'object.value', if it's match the requirements:
if so, then push into the 'source' array.
and...
add(source);
'returns' the actual list.
Notice that the source function of the autocomplete object will be called everytime when a new autocomplete search occurs, so you return the right collection of items everytime.
Of course, you can make a more sophisticated and optimized solution if this one meets your requirements.
cheers, negra