在 play framework 中,是什么导致绑定的表单数据在 POST 请求中隐藏?
例如,如果一个表单的字段名称和年龄具有值:
name: John
age: 20
是什么导致发布请求显示
localhost:9000/adduser
对比
localhost:9000/adduser?name=John&age=20
谢谢
在 play framework 中,是什么导致绑定的表单数据在 POST 请求中隐藏?
例如,如果一个表单的字段名称和年龄具有值:
name: John
age: 20
是什么导致发布请求显示
localhost:9000/adduser
对比
localhost:9000/adduser?name=John&age=20
谢谢