为什么 Vapor / Droplet 收不到 JSON?
Why Vapor / Droplet does not receive JSON?
发送一个JSON到本地服务,但是没有收到,为什么?
let config = try Config()
try config.setup()
let drop = try Droplet(config)
try drop.setup()
drop.get(handler: {req in
if req.json != nil {
print("ass")
print(req.json!)
}
return "almaG"
})
您正在发送带有正文的 GET 请求。尝试发送 POST 并使用 drop.post().
发送一个JSON到本地服务,但是没有收到,为什么?
let config = try Config()
try config.setup()
let drop = try Droplet(config)
try drop.setup()
drop.get(handler: {req in
if req.json != nil {
print("ass")
print(req.json!)
}
return "almaG"
})
您正在发送带有正文的 GET 请求。尝试发送 POST 并使用 drop.post().