Can comments be used in JSON?

后端 未结 30 2327
别跟我提以往
别跟我提以往 2020-11-22 02:16

Can I use comments inside a JSON file? If so, how?

30条回答
  •  忘掉有多难
    2020-11-22 02:38

    Here is what I found in the Google Firebase documentation that allows you to put comments in JSON:

    {
      "//": "Some browsers will use this to enable push notifications.",
      "//": "It is the same for all projects, this is not your project's sender ID",
      "gcm_sender_id": "1234567890"
    }
    

提交回复
热议问题