1

使用 Kendo.web.js 版本 2013.2.716 和 2012.3.1315,我试图在我的 transport.create 中使用一个函数,而不是调用一个 URL。我发现该函数没有被调用。取而代之的是调用默认 URL,生成的 HTML 似乎会导致 kendo 内部出现错误,因为它应该是 JSON。

我认为这是某种类型的配置错误,但我不知道问题出在哪里。

这是代码片段:

    var clientListDS = new kendo.data.DataSource({
    transport: {
        read: {
            url: window.baseUrl + 'HealthCheck/ClientSummary',
            dataType: 'json',
            type: 'POST'
        },
        create: function(a,b,c) { alert('Create'); },
        createY: window.baseUrl + 'HealthCheck/DontCallMe',
        createX: {
            url: window.baseUrl + 'HealthCheck/DontCallMe',
            dataType: 'json',
            type: 'POST'
        },
        whatWeWantCreateToDo: function () {
            showChooseDialog('Some Random String', 'Select Client', OnRefreshInactiveClientList);
        },
        destroy: function () {
            alert('destroy');
        },
        update: function () {
            alert('update');
        }
    },
    autoSync: true,
    schema: {
        model: {
            id: 'ID',
            fields: {
                ID: { required: false, type: 'number', nullable: true },
                ClientName: { type: 'string' },
                ClientTag: { type: 'string' },
                Status: { type: 'string' }
            }
        }
    }
});

然后我使用生成的数据源来构建一个像这样的网格:

    $('#cClientGrid').kendoGrid({
    dataSource: clientListDS,
    columns: [
        { field: 'ClientTag', title: 'Tag'},
        { field: 'ClientName', title: 'Name' },
        { field: 'Status' }
    ],
    editable: {
        mode: 'incell',
        createAt: 'bottom'
    },
    edit: function (pEvent) {
        if (pEvent.model.isNew())
            alert('create');
        else
            alert('Edit');
    },
    toolbar: ['create']
});

一些值得注意的行为:

  • 您会看到多次尝试创建配置。如果我使用 CreateY 或 CreateX,它将调用生成的 URL。如果我使用 Create 或 WhatWeWantCreateToDo,我最终会下载包含我的架构的每个元素的包含页面作为获取字符串项(我假设这是某种类型的默认行为,因为我找不到对下载的 URL 的引用)。
  • 当我关闭自动同步时,当我使用工具栏创建新项目时,网格将调用其编辑功能。当我打开 autoSync 时,不会调用编辑功能。而是运行数据源创建功能。

任何关于我如何能够调用函数而不是 URL 的想法或见解将不胜感激。

4

1 回答 1

8

首先将transport所有内容都设为 URL 或函数,不要混淆它们。
如果您需要实现read为函数,您只需执行以下操作:

transport: {
    read : function (options) {
        $.ajax({
            url: window.baseUrl + 'HealthCheck/ClientSummary',
            dataType: 'json',
            type: 'POST',
            success : function (result) {
                options.success(result);
            }
        });
    },
于 2013-08-13T13:53:30.427 回答