使用带有JSON的Plugin.DataTableDataSource时,YUI3数据表无法呈现数据

时间:2012-09-05 18:48:11

标签: yui-datatable

我一直试图通过json调用正确填充yui3数据表,但未成功。我很沮丧,希望有人能告诉我我的方式错误。无论我尝试过什么,我都会得到“无数据显示”。

当我在页面加载期间运行wireshark时,我看到从ajax调用返回的json数据。所以我认为我正确地将数据源绑定到数据表。请注意,我感兴趣的数据记录嵌套了元数据,看起来我的DataSourceJSONSchema定义是正确的。

以下是来自ajax调用的http响应。

YUI.Env.DataSource.callbacks.yui_3_6_0_1_1346868215546_114({
"recordsReturned":4,"startIndex":0,"dir":"asc","pageSize":10,
"records":[
  {"id":"48ee0540-ebd7-11e1-33e-c33ce39c9e", "email":"jim@example.com","name":"James"},
  {"id":"1447ea60-eca2-11e1-33e-f6c33ce39c9e", "email":"john@example.com","name":"John"},
  {"id":"48ff6a60-ebd7-11e1-a33e-f6c33ce39c9e", "email":"ryan@example.com","name":"Ryan"},
  {"id":"1a298060-f774-11e1-ad38-f6c33ce39c9e", "email":"vincent@example.com","name":"Vince"}]})

这是html页面。

<script type="text/javascript">
YUI({
lang : "en-US"
})
.use("datatable","datatype","datasource",function(Y) {
var ajaxData;
function ajaxSuccess(e) {
ajaxData = e.data;
}
}
function ajaxFailure(e) {
    Y.log("failure");
}

var myDataSource = new Y.DataSource.Get({
    source : "/actions/User.action?getAjaxUserList=&"
});

myDataSource.plug(Y.Plugin.DataSourceJSONSchema,{
    schema : {
        metaFields : {
            recordsReturned : "recordsReturned",
            startIndex : "startIndex",
            dir : "dir",
            pageSize : "pageSize"
        },
        resultsListLocator : "records",
        resultFields : [ {
        key : 'id'}, {
        key : 'email'},{
        key : 'name' }}});

    var table = new Y.DataTable({
    columns : [ {
    key : "id",
    label : "ID"
    }, {
    key : "name",
    label : "Name"}, {
    key : "email",
    label : "Email"} ],
    caption : "My first DataTable!",
    summary : "Example DataTable showing basic instantiation configuration"
                                    });
    table.plug(Y.Plugin.DataTableDataSource, {datasource : myDataSource});

    table.render('#dynamicdata');
    table.datasource.load({request : encodeURIComponent('fred=steve')});
                        });
    </script>

    <div id="dynamicdata"></div>

1 个答案:

答案 0 :(得分:2)

我注意到你在这里给出的代码有几个语法错误: 例如,函数(Y)回调过早关闭。

我认为您的错误是由于您在数据源的架构中设置了属性“resultsListLocator”而不是“resultListLocator”。

相关问题