码迷,mamicode.com
首页 > Web开发 > 详细

[TypeScript] TypeScript对象转JSON字符串范例

时间:2015-07-07 16:15:01      阅读:279      评论:0      收藏:0      [点我收藏+]

标签:

[TypeScript] TypeScript对象转JSON字符串范例

Playground

Samples

class DataTable {

    public columns: Array<string> = new Array<string>();

    public rows: Array<DataRow> = new Array<DataRow>();
}

class DataRow {

    public cells: Array<string> = new Array<string>();
}

class Test {

    public run() {

        var table = new DataTable();
        table.columns.push("ColumnA");
        table.columns.push("ColumnB");
        table.columns.push("ColumnC");

        var row1 = new DataRow();
        row1.cells.push("A1");
        row1.cells.push("B1");
        row1.cells.push("C1");
        table.rows.push(row1);

        var row2 = new DataRow();
        row2.cells.push("A2");
        row2.cells.push("B2");
        row2.cells.push("C2");
        table.rows.push(row2);

        alert(JSON.stringify(table));
    }
}

var test = new Test();
test.run();

[TypeScript] TypeScript对象转JSON字符串范例

标签:

原文地址:http://www.cnblogs.com/clark159/p/4626864.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!