doukanxi4246 2015-02-01 03:58
浏览 32
已采纳

为什么此JSON不解码为我的结构?

I am sending this kind of array after calling JSON.stringify on it

{
  "世": 1,
  "界": 1,
  "最": 1,
  "強": 1
}

but am having trouble using json.NewDecoder.Decode on it, is my struct wrong?

type text struct {
    Text map[string]int
}

I am also having trouble sending that data back to the front end, how do I convert my data back to []byte or is there another method available to send json back to front end?

func PostHandler(w http.ResponseWriter, r *http.Request){
    log.Println("post start")
    if r.Method != "POST" {
        log.Println("in post but early return")
        http.NotFound(w, r)
        return
    }

    decoder := json.NewDecoder(r.Body)
    var t text
    err := decoder.Decode(&t)
    if err != nil {
        log.Println("I tried")
        log.Println(r.Body)
    }
    log.Println(t.Text)
    //w.Write([]byte(t.Text))     //throws conversion error
}    

(I am trying to send data back and forth between front and back end to get the basics down before moving on and expanding)

Also what's printed from the log is

post start
map[]
  • 写回答

1条回答 默认 最新

  • dtd5644 2015-02-01 04:44
    关注

    Decode the JSON value directly to a map[string]int. The map corresponds to the one object in the JSON value.

    decoder := json.NewDecoder(r.Body)
    var t map[string]int
    err := decoder.Decode(&t)
    if err != nil {
        log.Println("I tried")
        log.Println(r.Body)
    }
    log.Println(t)
    

    similar playground example

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

报告相同问题?

悬赏问题

  • ¥15 stata安慰剂检验作图但是真实值不出现在图上
  • ¥15 c程序不知道为什么得不到结果
  • ¥40 复杂的限制性的商函数处理
  • ¥15 程序不包含适用于入口点的静态Main方法
  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题