有没有一种方法可以将注释添加到proxy.config.json?

时间:2019-05-10 14:01:50

标签: angular

寻找一种将注释添加到proxy.config.json的方法。

我尝试了//和#,但是在运行ng serve时都导致错误。

"/uritocommentout*":{
        "target": "http://localhost:8080/",
        "secure": false,
        "logLevel": "debug"
    },

在开发过程中只是想注释掉一些映射

1 个答案:

答案 0 :(得分:0)

JSON都应该是数据,如果包含注释,那么它也将是数据。

您可以做的是从_开始一些字段,然后在解析它们时将其作为注释忽略。像这样:

{
    "_comment" : "This is a comment",
    "msg" : "This is data"
}