2

我正在使用 select2 库来替换选择框。我重新排列了您可以在Select2 库页面上找到的示例 7(使用 id 等向下滚动 $("#e7").select2...)。我制作了自己的通用处理程序,它返回序列化的 json 数据:

GetData.asxh 视图:公共类 GetData:IHttpHandler { public bool IsReusable { get { return false; } }

    public class RecipesList
    {
        public int total { get; set; }
        public List<TopRecipeTable> recipes { get; set; }

        public RecipesList() { }

        public RecipesList(int total, List<TopRecipeTable> recipes)
        {
            this.total = total;
            this.recipes = recipes;
        }
    }

    private string GenerateJsonSerializedObject(int languageId, string orderBy)
    {            
        RecipesList recipeList = new RecipesList(15, DBDataBase.GetTopRecipesByNumberOfRecipes(languageId, 15));
        return new JavaScriptSerializer().Serialize(recipeList);
    }

    public void ProcessRequest(HttpContext context)
    {
        int languageId;            
        bool languageParsed = int.TryParse(context.Request["languageId"], out languageId);
        string orderBy = (string)context.Request["orderBy"];

        if (languageParsed && orderBy != string.Empty)
        {enter code here
            context.Response.ContentType = "application/json";
            var jsonValue = GenerateJsonSerializedObject(languageId, orderBy);
            context.Response.Write(jsonValue);
        }
    }

这个通用处理程序返回正确的 json 格式(我用这个 URL检查了它)。我的结果(json)也与上述页面上的示例相同。但是在这个 jquery 不再触发之后。

我的脚本:

$(document).ready(function () {
        $("#e8").select2({
            placeholder: "Search for a recipe",
            //minimumInputLength: 1,
            ajax: {                               
                url: "/Handlers/GetData.ashx",
                dataType: 'jsonp',
                data: function (term, page) {
                    return {
                        languageId: 1,
                        orderBy: "TA"
                    };
                },
                results: function (data, page) {
                    alert(data.total);
                    var more = (page * 10) < data.total; // whether or not there are more results available

                    // notice we return the value of more so Select2 knows if more results can be loaded
                    return { results: data.recipes, more: more };
                }
            },
            formatResult: movieFormatResult, // omitted for brevity, see the source of this page
            formatSelection: movieFormatSelection, // omitted for brevity, see the source of this page
            dropdownCssClass: "bigdrop", // apply css that makes the dropdown taller
            escapeMarkup: function (m) { return m; } // we do not want to escape markup since we are displaying html in results
        });
    });

我尝试alert(data.total)在原始示例中编写相同的内容,它有效,但在我的版本中无效。所以我有正确的 json 格式,jquery 调用我的通用处理程序并收到参数 languageId ...并且还返回正确的 json 格式,但比什么都没有。我不知道我是否在这里遗漏了什么,因为我确信这个东西也可以与通用处理程序一起使用。我希望我就我的问题提供了足够的信息。

I can also add my result in jquery .ajax error handler : 
xhr.status = 200
ajaxOptions = parsererror
horwnError = SyntaxError : invalid label
If this is any helpful information
4

1 回答 1

0

这个问题很老了,所以很确定你现在有一个解决方案......但是:

删除所有这些功能:

formatResult: movieFormatResult formatSelection: movieFormatSelection dropdownCssClass: ... escapeMarkup:....

您没有提供这些功能来格式化您的数据,是吗?仅当您要自定义项目下拉列表时,才需要所有这些。

您正在返回 data.recipes - 它需要是 {Text:"", Id:""} 的数组,或者您需要从那里返回的内容构建它。

首先,让它使用一个非常基本的列表和非常基本的数据......然后从那里开始。

此外,当您开始工作时,请尝试使用 WebApi 或 ServiceStack 来处理您的数据,而不是使用 IHttpHandler。

于 2013-05-04T02:17:46.803 回答