美文网首页
Postman 7.34.0 Collections集合合并问题

Postman 7.34.0 Collections集合合并问题

作者: sunland_0416 | 来源:发表于2020-10-25 10:51 被阅读0次

    之前将公司下的接口输入到postman下了,但是接口是在几个集合下的,现在想把几个集合合并为一个大的集合。
    本来想着直接拖动合并就可以了,谁知道居然不支持!!!
    无奈之下只能用导入导出功能重新生成一个集合。

    Collection v2.1 (recommended) 这个默认方式导出

    步骤如下,先新建一个空集合,
    再分别导出子集合

    notepad打开空集合目录,发现Postman导出的json文件格式如下

    {
        "info": {
            "_postman_id": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
            "name": "公司",
            "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
        },
        "item": [
                {
                    "name": "一级子目录1",
                    "item": [
                        {
                            "name": "二级子目录1",
                            "item": []
                        }
                    ]
                },
                {
                    "name": "一级子目录2",
                    "item": []
                },
            ],
        "protocolProfileBehavior": {}
    }
    

    不难看出,其结构,然后直接把导出的子集合用notepad打开,直接复制name 跟item粘贴到空集合导出的文件内再导入就可以了。
    注意:
    item[{},{},{}]里面的逗号不要忘了。

    相关文章

      网友评论

          本文标题:Postman 7.34.0 Collections集合合并问题

          本文链接:https://www.haomeiwen.com/subject/phpimktx.html