查询字符串构建器
可视化构建 URL 查询字符串。添加、编辑和删除参数,自动进行 URL 编码。
=
=
https://example.com/api?page=1&limit=10
Tip: Paste a full URL in the Base URL field and click "Parse URL" to extract existing parameters.
查询字符串 - 技术详情
查询字符串使用由 & 分隔的 key=value 对在 URL 中传递数据。特殊字符必须进行 URL 编码。查询字符串在 URL 中的 ? 之后开始。
命令行替代方案
// Query string format\nhttps://api.example.com/search?q=hello&page=1&sort=asc\n\n// URL encoding\nspace → %20 or +\n& → %26