douci2015 2018-12-19 22:21
浏览 351
已采纳

无法将nil转换为字符串类型

I have this piece of code in a middleware func:

params := r.URL.Query()

tok := params["x-huru-api-token"][0];

if tok == nil {
    tok := r.Header.Get("x-huru-api-token")
}

but I get this error:

enter image description here

anybody know what that's about?

  • 写回答

2条回答 默认 最新

  • dream8877 2018-12-19 23:42
    关注

    The value nil is not a valid value for a string. If you want to fallback to the header on both missing values and empty values, then using the following code:

    params := r.URL.Query()
    tok := params.Get("x-huru-api-token")
    if tok == "" {
        tok = r.Header.Get("x-huru-api-token")
    }
    

    If you only want to fallback to the header when the query parameter is missing, then use the following:

    params := r.URL.Query()
    var tok string
    if values, ok := params["x-huru-api-token"]; ok && len(values) > 0 {
       tok = values[0]  // note that tok can be the empty string ""
    } else {
       tok = r.Header.Get("x-huru-api-token")
    }
    

    Note one difference between the code in this answer and the question. This answer uses assignment to set tok inside the if statement. The code in the question uses a short variable declaration. The short variable declaration will not compile because the newly declared variable inside the if statement is not used.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 c语言怎么用printf(“\b \b”)与getch()实现黑框里写入与删除?
  • ¥20 怎么用dlib库的算法识别小麦病虫害
  • ¥15 华为ensp模拟器中S5700交换机在配置过程中老是反复重启
  • ¥15 java写代码遇到问题,求帮助
  • ¥15 uniapp uview http 如何实现统一的请求异常信息提示?
  • ¥15 有了解d3和topogram.js库的吗?有偿请教
  • ¥100 任意维数的K均值聚类
  • ¥15 stamps做sbas-insar,时序沉降图怎么画
  • ¥15 买了个传感器,根据商家发的代码和步骤使用但是代码报错了不会改,有没有人可以看看
  • ¥15 关于#Java#的问题,如何解决?