2

我正在寻找将 json 文件合并到一个文件夹中的最佳方法。

使用 HTML、CSS 和 JavaScript 这很容易,因为您不需要分隔符或只需要一个;. 然而,对于 JSON,我们需要更多的东西来使它成为一个有效的 JSON 对象。

一种方法是连接文件,并将所有内容包装在一个数组中。我想知道是否有更好/更简单的方法来做到这一点。

Gruntfile.js

grunt.initConfig({
    pkg: grunt.file.readJSON('package.json'),
    concat: {
        json: {
            src: ['src/**/*.json'],
            dest: 'dist/combined.json',
            options: {
              ...
            }
        }
    }
});

src/file1.json

{
    "number": 1
}

src/file2.json

{
    "number": 2
}

dist/combined.json

这将是期望的结果:

{
    "numbers": [
        {
            "number": 1
        },
        {
            "number": 2
        }
    ]
}
4

3 回答 3

4

您应该能够使用横幅页脚选项。

grunt.initConfig({
    pkg: grunt.file.readJSON('package.json'),
    concat: {
        json: {
            src: ['src/**/*.json'],
            dest: 'dist/combined.json',
            options: {
                // Added to the top of the file
                banner: '{"numbers": [',
                // Will be added at the end of the file
                footer: "]}",
                separator: ','
            }
        }
    }
});
于 2013-04-11T02:17:03.463 回答
1

您应该使用专门的面向 JSON 的插件来处理它。不仅仅是一个任意的字符串连接。

看看https://github.com/rse/grunt-merge-jsonhttps://github.com/shinnn/grunt-merge-data

于 2015-02-04T12:48:14.193 回答
1

您可以为此使用grunt-merge-json

使用示例:

假设我们有以下类型的源 JSON 文件:

src/foo/foo-en.json:
{
    "foo": {
        "title": "The Foo",
        "name":  "A wonderful component"
    }
}
src/bar/bar-en.json:
{
    "bar": {
        "title": "The Bar",
        "name":  "An even more wonderful component"
    }
}

假设我们要生成以下目标 JSON 文件:

{
    "foo": {
        "title": "The Foo",
        "name":  "A wonderful component"
    },
    "bar": {
        "title": "The Bar",
        "name":  "An even more wonderful component"
    }
}

每个目标变体单个文件

grunt.initConfig({
    "merge-json": {
        "en": {
            src: [ "src/**/*-en.json" ],
            dest: "www/en.json"
        },
        "de": {
            src: [ "src/**/*-de.json" ],
            dest: "www/de.json"
        }`enter code here`
    }
});

每个目标变体多个文件

grunt.initConfig({
    "merge-json": {
        "i18n": {
            files: {
                "www/en.json": [ "src/**/*-en.json" ],
                "www/de.json": [ "src/**/*-de.json" ]
            }
        }
    }
});
于 2014-08-05T14:47:49.303 回答