在客户端我有代码:
let response = await fetch('/getInfo', { credentials: 'same-origin', method: 'POST', body: JSON.stringify({filename: "file.jpg"}) });
服务器端的代码:
fmt.Println(c.PostForm("filename")) // empty
为什么是空的?如何获得的价值c.PostForm("filename")?
c.PostForm("filename")
慕仙森
相关分类