1

就像标题中描述的那样,我在让 jqueryUI 自动完成小部件工作时遇到了一点问题。

这听起来很傻,但它m hanging the whole day getting that thing solved, but i didn。我已经开发了几年 C#,现在尝试从一个月左右的时间开始使用 asp 和 jquery 进行开发。只是为了展示,我搜索了网络,尤其是 stackoverflow,并尝试了很多让它运行。

好的,这是代码。

定义文本框:

 <asp:TextBox ID="txtSearchbox"
                    style="float:left;padding:5px 1px 5px 1px;" runat="server" >
 </asp:TextBox>

自动完成 Jquery 脚本部分:

<script type="text/javascript">

    $(document).ready(function () {
        $('#txtSearchbox').autocomplete( {
         source: function (request, response) {
                    //console.log(request.term);
             $.ajax
             ({
                 url: "AutoComplete.asmx/GetSearchInfo",
                 data: "{ 'prefixText': '" + request.term + "' }",
                 dataType: "json",
                 type: "POST",
                 contentType: "application/json; charset=utf-8",
                 dataFilter: function (data) {
                     //console.log(data.toString());
                     //alert(data.toString());
                     return data;
                 },
                 success: function (data) {
                     // console.log(data.d.toString());
                     response($.map(data.d, function (item) {
                         // console.log(item.Isin)
                         // console.log(item.Name)
                         return
                         {
                             label: item.Name.toString()
                             value: item.Name.toString()
                         }
                     }));
                },
                 error: function (XMLHttpRequest, textStatus, errorThrown) {
                     alert(textStatus);
                 }
             });
         },
         minLength: 2
         });
    });

</script>

AutoComplet.asmx:

[WebMethod]
public List<SearchObject> GetSearchInfo(string prefixText) 
{
    var seo = new SearchObject();
    var getSeo = staticList.getSEOlist().Where(str => str.SearchString.ToLower().Contains(prefixText.ToLower()));

    return getSeo.ToList();
} 

为了完整起见,CSS:

    /*AutoComplete flyout */
.autocomplete_completionListElement
{
    margin:0px!important;
    background-color:#ffffff;
    color:windowtext;
    border:buttonshadow;
    border-width:1px;
    border-style:solid;
    cursor:'default';
    overflow:auto;
    height:200px;
    font-family:Tahoma;
    font-size:small;
    text-align:left;
    list-style-type:none;
    padding: 5px 5px 5px 5px;
    }

/* AutoComplete highlighted item */
.autocomplete_highlightedListItem
{
    background-color:#ffff99 ;
    color:black;
    padding:0px;
    }

    /* AutoComplete item */
.autocomplete_listItem
{
    background-color:window;
    color:windowtext;
    padding:0px;
   }

如果您需要更多,请告诉我。

调试行已被注释掉。

如果我检查 jquery 部分,我会得到我想要的数据,但它不会显示在 txtsearch 中。而且我真的不明白 AutoComplete jquerUI 方法将如何显示该列表,但编码应该是正确的。

4

3 回答 3

7

实际上,您可能会成为一个非常讨厌的 JavaScript 功能的受害者,该功能称为自动分号插入。您的成功回调/jQuery map 函数中的 return 语句写错了。

return
{
    label: item.Name.toString()
    value: item.Name.toString()
}

这应该是正确的语法:

return {
    label: item.Name.toString()
    value: item.Name.toString()
}

JavaScript 编译器在第一种情况下的 return 语句后面添加了一个自动分号,导致它不返回任何内容/未定义。

这个 SO question很好地概述了这种行为的规则。

于 2012-05-31T02:15:06.860 回答
1

我在 .net 4 上使用 asp.net、c# 运行自动完成功能。我就是这样做的。

// 对于 .aspx 页面,

   <asp:ScriptManager ID="ScriptManager1" runat="server">
    <Services>
        <asp:ServiceReference Path="/PathToServiceHere/AutoComplete.svc" />            
    </Services>
</asp:ScriptManager>

// 文本框,我在这里不使用服务器端文本框,但我认为这不是 JQuery 的问题

  <input id="ModelBox" type="text" style="width: 158px;" />

// jQuery

     $(function () {
            $("#ModelBox").autocomplete({
                minLength: 0,
                delay: 0,
                cache: true,
                source: function (req, addToList) {

                    var popList = new GetAutoCompleteService.GetAutoComplete();
                    popList.GetModels(req.term, function (model) {

                        var listItems = [];
                        if (model.length > 0) {
                            for (var key = 0; key < model.length; key++) {
                                listItems.push(model[key].Model);
                            }
                        } else {
                            listItems.push("No Matching Model.");
                        }
                        addToList(listItems);
                    }, function onError() {
                    });
                }
            });

            $("#ModelBox").click(function () {
                // close if already visible
                if ($("#ModelBox").autocomplete("widget").is(":visible")) {
                    $("#ModelBox").autocomplete("close");
                    return;
                }

                // work around a bug (likely same cause as #5265)
                $(this).blur();

                // pass empty string as value to search for, displaying all results
                $("#ModelBox").autocomplete("search", "");
                $("#ModelBox").focus();
            });
        });

// 自动完成.svc

  namespace autocomplete.Service
    {
        using System.Collections.Generic;
        using System.Linq;

        using System.ServiceModel;
        using System.ServiceModel.Activation;

        using System.Data;

        [ServiceContract(Namespace = "GetAutoCompleteService")]
        [AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
        public class GetAutoComplete
        {

            [OperationContract]
            public List<Models> GetModels(string model)
            {

               // Data access here to retrieve data for autocomplete box then convert to list

    // or however you get the data into list format
                List<Models> List = dataJustPulled.ToList(); 
                return List;
            }
        }
    }
于 2012-05-30T15:05:23.350 回答
1

问题解决了。

它工作,在 Miroslav Popovic 的帮助下,我得到了工作,这是真正无用的 JavaScript 功能“自动分号插入”。

稍微改变一下代码结构,一切正常。

这是更正的部分:

return{
       label: item.Name.toString(),
       value: item.Name.toString()
}

THX - 对所有帮助过的人

于 2012-05-31T07:04:35.587 回答