2

我正在尝试将 ViewModel 绑定到 Kendo DataSource,然后将其提供给 Kendo Grid。在这一点上没有什么太花哨的。

它有点工作,但非常慢!我收到一条警报,通知我在 2 秒内收到了我的 json 数据(700 行),但更新视图模型大约需要 15 秒。

我究竟做错了什么?

谢谢

    $(document).ready(function () {

        // create the viewmodel we use as the source for the list
        var viewModel = kendo.observable({
            items: [],
            total: function () {
                return this.get("items").length;
            }
        });

        var dataSource2 = new kendo.data.DataSource({
            data: viewModel,
            pageSize: 50
        });

        // create the grid
        $("#grid").kendoGrid({
            dataSource: dataSource2,
            height: 500,
            scrollable: {
                virtual: true
            },
            columns: [
                { field: "ID_ORDER", title: "ID", width: 80 },
                { field: "CREATION_DATE", title: "Creation Date" },
                { field: "STATUS", title: "STATUS", width: 80 },
                ** more columns (around 10) **
            ]
        });

        // pass this on to initialise
        APPS.View.Orders.Initialise(viewModel);

    });

然后在我的打字稿中,我正在处理传入 viewModel 的 Initialise 调用:

    module APP.View.Orders {

        export var _Scope: string = "Orders";
        var _viewModelOrders: any;

        export var Initialise = function (viewModelOrders: any) {

            _viewModelOrders = viewModelOrders;

            var orderdetails = {
                userid: APP.Core.userID,
                context: "DEAL"
            };

            // retrieve all orders
            $.getJSON("/api/omsapi/GetOrders", orderdetails, function (mydata) {

                try {

                    alert("item count (1): " + mydata.length);

                    jQuery.each(mydata, function () {

                        var newItem = this;
                        _viewModelOrders.items.push(newItem);

                    });

                    alert("item count (2): " + _viewModelOrders.items.length);

                }
                catch (e) {
                    alert(e.message);
                }
            });
        }
}
4

3 回答 3

1

尝试构建项目数组,然后将其分配到模型中。

就像是:

// retrieve all orders
$.getJSON("/api/omsapi/GetOrders", orderdetails, function (mydata) {
    try {
        alert("item count (1): " + mydata.length);
        var items = [];
        jQuery.each(mydata, function () {
            items.push(this);
        });
        _viewModelOrders.items = items;
        alert("item count (2): " + _viewModelOrders.items.length);
    }
    catch (e) {
        alert(e.message);
    }
});
于 2013-02-04T22:07:51.760 回答
1

您可以通过执行以下操作暂时挂起 observable:

$.getJSON("/api/omsapi/GetOrders", orderdetails, function (mydata) {
     try {
        var simpleArray = viewModel.items();  // get a reference to the underlying array instance of the observable
        jQuery.each(mydata, function () {
            items.push(this);
        });

        viewModel.items.valueHasMutated(); // let the observable know it's underlying data has been updated
     }
     catch (e) {
        alert(e.message);
    }
}

执行上述技术可以显着提高加载时间。我已经在合理的时间内测试了这个加载几千行。

于 2013-05-02T15:52:30.383 回答
0

为了进一步解释,这是由于以下行:

_viewModelOrders.items.push(newItem);

每次将项目推送到数组中时,它都会触发一个change事件,Grid 会看到并更新它自己。所以如果你推入 700 个项目,你真的会导致网格更新 DOM 700 次。

最好将所有项目聚合到一个数组中,然后将该数组分配给 DataSource,例如:

$.getJSON("/api/omsapi/GetOrders", orderdetails, function (mydata) {
    datasource2.data(mydata);
于 2014-02-24T15:21:19.783 回答