使用json数组创建动态字段参数

时间:2016-09-01 15:07:09

标签: javascript json twitter-bootstrap

我使用以下脚本将表导出到Excel并导出数据表我们必须提供字段名称(名称,描述)和类型等。但在我的情况下,我必须动态传递字段名称。这意味着我有JSON数组需要迭代为fileds。

http://www.prepbootstrap.com/bootstrap-template/table-export-to-excel

var dataSource = shield.DataSource.create({
                    data: ".exportTable",
                    schema: {
                        type: "table",
                        fields: {
                            Title: {type: String},
                            Description: {type: String},
                        }
                    }
                });

我尝试如下,我知道这不是正确的方法,但最好是了解我需要什么

var fieldarray = <?php echo json_encode($meta_list); ?>;   

var dataSource = shield.DataSource.create({
                    data: ".exportTable",
                    schema: {
                        type: "table",
                        fields: {
                            $.each(fieldarray, function (index, value) {
                            value.label: {type: String},

                          });
                        }
                    }
                });

0 个答案:

没有答案