我正在使用来自 Scala 的 Dispatch,如下所示:
val body = """{"count":5,"requeue":true,"encoding":"auto","truncate":50000}"""
val req = url("http://localhost:4567/api/queues/%2f/myQueue/get").as_!("guest", "guest") << (body, "application/json")
val http = new Http
val resp = http(req as_str)
%2f
变成了/
,所以它尝试发布到而/api/queues///myQueue/get
不是到/api/queues/%2f/myQueue/get
。
我该如何正确逃避呢?