初级会员
  • 第 34693 位会员
  • rwy-aha-QWQ
  • 2019-04-16 11:38:54
  • Offline
  • 20 30

最近发布的主题

    暂无

最近发布的文章

    暂无

最近分享的资源

    暂无

最近发布的项目

    暂无

最近的评论

  • 建议你重新组织一下语言,先把问题理顺了再提问,不然真不好看明白你要干嘛
  • 评论了主题 任意结构JSON解析
    自带的json无法满足你的需求嘛?看你的意思是要自己实现json解析包?
  • 评论了主题 go语言中数据转换
    ```go total := make(map[string]interface{}) total["relation"] = "eq" total["value"] = 1 highlight := make(map[string][]interface{}) highlight["name"] = []interface{}{`<font color ='red'>New</font> <font color ='red'>York</font>`} hits := make([]map[string]interface{},0) hitmp := make(map[string]interface{}) hitmp["_id"] = "OQpf7HYBhW0_ej1URQbB" hitmp["_index"] = "student" hitmp["_score"] = 0.5753642 hitmp["type"] = "doc" hitmp["highlight"] = highlight hits = append(hits,hitmp) tmp := make(map[string]interface{}) tmp["max_score"] = 0.5753642 tmp["total"] = total tmp["hits"] = hits //fmt.Println(tmp) //sm,_ := json.Marshal(tmp) buf := bytes.NewBuffer([]byte{}) jsencode := json.NewEncoder(buf) jsencode.SetEscapeHTML(false) jsencode.Encode(tmp) fmt.Println(buf.String()) ``` 不知道这个是不是你想要的结果
  • 同时选中两个文件再执行
  • 评论了主题 新人求问:关于强转
    刚好前段时间有看到一遍博文分析:https://blog.csdn.net/u014440645/article/details/108636950 跟着这个自己去阅读源码,你就能明白到底发生了什么