登录
首页 >  Golang >  Go问答

golang url解析问题

来源:SegmentFault

时间:2023-01-19 15:51:39 464浏览 收藏

在Golang实战开发的过程中,我们经常会遇到一些这样那样的问题,然后要卡好半天,等问题解决了才发现原来一些细节知识点还是没有掌握好。今天golang学习网就整理分享《golang url解析问题》,聊聊go,希望可以帮助到正在努力赚钱的你。

问题内容

用golang开启httpserver,如果参数里面有(;)这个符号的话会作为字段值结束,然后分拆出来多一个参数。这个是怎么解决?
即如果我传的是params=111;222
然后golang就解析成两个参数[params=111,222=]

正确答案

;
是HTTP URL中的特殊字符RFC
解决方案
  1. 更换分隔符号

  2. 使用

    URL Encoder
    将参数编码,在JS中可以使用
    encodeURIComponent

Many URL schemes reserve certain characters for a special meaning:
   their appearance in the scheme-specific part of the URL has a
   designated semantics. If the character corresponding to an octet is
   reserved in a scheme, the octet must be encoded.  The characters ";",
   "/", "?", ":", "@", "=" and "&" are the characters which may be
   reserved for special meaning within a scheme. No other characters may
   be reserved within a scheme.

文中关于golang的知识介绍,希望对你的学习有所帮助!若是受益匪浅,那就动动鼠标收藏这篇《golang url解析问题》文章吧,也可关注golang学习网公众号了解相关技术文章。

声明:本文转载于:SegmentFault 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>
评论列表