英文:
Recommended way to encode/decode URLs
问题
什么是在Go中编码/解码URL的推荐方法?我正在寻找与JavaScript中的encodeURIComponent相当的方法。
英文:
> Possible Duplicate:
> Encode / decode URLs
<!-- End of automatically inserted text -->
What's the recommended way to encode/decode URLs in Go? I am looking to the equivalent of encodeURIComponent in JavaScript.
答案1
得分: 31
你正在寻找"net/url"包。
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论