jQiueryUI中关于AutoComplete的说明

来源:岁月联盟 编辑:exp 时间:2012-05-03

什么是AutoComplete及使用场景
AutoComplete:文本框的自动填充控件AutoComplete,类似于Google搜索输入框提供的功能。为什么有这样的功能呢,因为用户都很懒
 
Autocomplete, when added to an input field, enables users to quickly find and select from a pre-populated list of values as they type, leveraging searching and filtering.
By giving an Autocomplete field focus or entering something into it, the plugin starts searching for entries that match and displays a list of values to choose from. By entering more characters, the user can filter down the list to better matches.
This can be used to enter previous selected values, for example you could use Autocomplete for entering tags, to complete an address, you could enter a city name and get the zip code, or maybe enter email addresses from an address book.
 
如果选项数据量很少,比如10条以内,个人觉得使用radio或者select更好。
 
AutoComplete使用样例(本地静态数据)
 
Js代码    
1. <meta charset="utf-8">  
2.       
3.     <script>  
4.     $(function() {  
5.         var availableTags = [  
6.             "ActionScript",  
7.             "AppleScript",  
8.             "Asp",  
9.             "BASIC",  
10.             "C",  
11.             "C++",  
12.             "Clojure",  
13.             "COBOL",  
14.             "ColdFusion",  
15.             "Erlang",  
16.             "Fortran",  
17.             "Groovy",  
18.             "Haskell",  
19.             "Java",  
20.             "JavaScript",  
21.             "Lisp",  
22.             "Perl",  
23.             "PHP",  
24.             "Python",  
25.             "Ruby",  
26.             "Scala",  
27.             "Scheme" 
28.         ];  
29.         $( "#tags" ).autocomplete({  
30.             source: availableTags  
31.         });  
32.     });  
33.     </script>  
34.  
35.  
36. <div class="demo">  
37.  
38. <div class="ui-widget">  
39.     <label for="tags">Tags: </label>  
40.     <input id="tags" />  
41. </div>  
42.  
43. </div><!-- End demo --> 
 
 
选项数据的三种提供方式(本地数组、指定URL、Callback)
You can pull data in from a local and/or a remote source: Local is good for small data sets (like an address book with 50 entries), remote is necessary for big data sets, like a database with hundreds or millions of entries to select from.
Autocomplete can be customized to work with various data sources, by just specifying the source option. A data source can be:
• an Array with local data
• a String, specifying a URL
• a Callback
期望数据格式(Expected data format)
The data from local data, a url or a callback can come in two variants:
• An Array of Strings:
[ "Choice1", "Choice2" ]
• An Array of Objects with label and value properties:
[ { label: "Choice1", value: "value1" }, ... ]
The label property is displayed in the suggestion menu. The value will be inserted into the input element after the user selected something from the menu. If just one property is specified, it will be used for both, eg. if you provide only value-properties, the value will also be used as the label.
 
 
指定URL来获取选项数据
When a String is used, the Autocomplete plugin expects that string to point to a URL resource that will return JSON data. It can be on the same host or on a different one (must provide JSONP). The Autocomplete plugin does not filter the results, instead the request parameter "term" gets added to the URL, which the server-side script should use for filtering the results. The data itself can be in the same format as the local data described above.
 
Js代码    
1. <script>  
2. $(function() {  
3.     $( "#tags" ).autocomplete({  
4.         source: "search.php",  
5.         minLength: 2,  
6.         select: function( event, ui ) {  
7.             // ui.item ?  
8.             //  "Selected: " + ui.item.value + " aka " + ui.item.id :  
9.             //  "Nothing selected, input was " + this.value;  
10.         }  
11.     });  
12. });  
13. </script> 
 
下面使用firebug得到的search.php部分响应内容
Js代码    
1. [ { "id": "Ciconia ciconia", "label": "White Stork", "value": "White Stork" }, { "id": "Netta rufina", "label": "Red-crested Pochard", "value": "Red-crested Pochard" },   
2. { "id": "Burhinus oedicnemus", "label": "Stone Curlew", "value": "Stone Curlew" }, { "id": "Galerida cristata", "label": "Crested Lark", "value": "Crested Lark" },   
3. { "id": "Saxicola rubicola", "label": "European Stonechat", "value": "European Stonechat" }, { "id": "Circus aeruginosus", "label": "Western Marsh Harrier", "value": "Western Marsh Harrier" },   
4. { "id": "Podiceps cristatus", "label": "Great Crested Grebe", "value": "Great Crested Grebe" } ] 
 
 
用回调函数来提供选项数据
使用回调函数主要有两种用途:
1、对本地的选项数据进行筛选/过滤;
2、使用ajax从远端获取选项数据;
 
The third variation, the callback, provides the most flexibility, and can be used to connect any data source to Autocomplete. The callback gets two arguments:
• A request object, with a single property called "term", which refers to the value currently in the text input. For example, when the user entered "new yo" in a city field, the Autocomplete term will equal "new yo".
• A response callback, which expects a single argument to contain the data to suggest to the user. This data should be filtered based on the provided term, and can be in any of the formats described above for simple local data (String-Array or Object-Array with label/value/both properties). It's important when providing a custom source callback to handle errors during the request. You must always call the response callback even if you encounter an error. This ensures that the widget always has the correct state.
The label is always treated as text, if you want the label to be treated as html you can use Scott González' html extension. The demos all focus on different variations of the source-option - look for the one that matches your use case, and take a look at the code.
 
使用ajax获取json数据的代码样本,request.term 是用户输入的内容。
 
Js代码    
1. $(function() {  
2.     $("#tags").autocomplete({  
3.         source: function (request, response) {  
4.             $.ajax({  
5.                 url: "searchAction!search.action",  
6.                 type: "POST",  
7.                 data: {  
8.                     term: request.term  
9.                 },  
10.                 dataType: "json",  
11.                 success: function(rsp) {  
12.                     response((rsp && rsp.data) ? rsp.data : []);  // 假定选项数据在rsp.data中  
13.                 },  
14.                 error: function() {  
15.                     response([]);   // 出错了也要response一下,否则“忙碌”的小图标就会不停地转  
16.                 }  
17.             });  
18.         },  
19.         minLength: 2,  
20.         select: function (event, ui) {  
21.             // ui.item ? ui.item.value : this.value  
22.         }  
23.     });  
24. }); 

 


摘自 coding1688