doupi4649 2019-06-10 07:28
浏览 162
已采纳

Golang json。解组字符串文字中的无效字符' '

Golang json.Unmarshal throws error for newline character. Go Playground

How to unmarshal data if string contains newline?

  • 写回答

1条回答 默认 最新

  • dongzhang1987 2019-06-10 07:41
    关注

    Simply escaping the newline character should do the trick:

    var val []byte = []byte(`"{\"channel\":\"buupr\
    iya\",\"name\":\"john\", \"msg\":\"doe\"}"`)
    

    The output for the above:

    {"channel":"buupr
    iya","name":"john", "msg":"doe"}
    

    Since you're attempting to pass a raw string literal here, you will need to be able to represent the JSON in string form, which requires you to escape the newline character.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?