我正在尝试将JSON数据发送到控制器,但控制器将其打印为空。
以下是我的控制器代码的内容:
@Transactional
def save(User user) {
println "${request.JSON}"
println "${request.JSON.owner}"
println request.format
user = new User(request.JSON)
if (user == null) {
transactionStatus.setRollbackOnly()
render status: NOT_FOUND
return
}
if (user.hasErrors()) {
transactionStatus.setRollbackOnly()
respond user.errors, view:'create'
return
}
user.save flush:true
respond user, [status: CREATED, view:"show"]
}
我已尝试通过此链接Grails send request as JSON and parse it in controller
提供的所有内容网址映射:
post "/user/"(controller: "user",parseRequest:true, action:"save")
当我尝试这个时:
curl --data '{"owner":"new owner"}' --header "Content-Type: application/json" http://localhost:8080/user/
我输出为:
{"message":"Property [owner] of class [class com.sample.User] cannot be null","path":"/user/index","_links":{"self":{"href":"http://localhost:8080/user/index"}}
这是控制器的输出:
[:]
null
json
我使用rest-api配置文件
创建了应用程序Controller接受" text / html"键入" POST"操作但不是JSON 我可以使用JSON作为内容类型更新现有对象。
我的域类有三个字段
String owner
String category
Boolean deleted = false
我正在使用邮递员发送JSON请求。
{
"owner":"some user",
"category":"rule01"
}
我做错了什么?
答案 0 :(得分:0)
<强> [编辑] 强>
好的,我们一点一点地走了;在浏览器中试用此网址
http://localhost:8080/user/save?owner=the+beautiful&category=homo+sapiens
使用以下代码,
@Transactional
def save() {
println params.owner
println params.category
render (params as JSON)
}
并在此处发布,无论您在浏览器中收到什么内容。
答案 1 :(得分:0)
我遇到了同样的问题,经过一番猜测:)这就是我设法解决的方法。
def postentry (accountno){
def fulldata = request.reader.text
def ddd = new JsonSlurper().parseText(fulldata)
accountno = ddd.accountno[0].toString()
println accountno
transidd = ddd.transid[0].toString()
transamtt = ddd.transamt[0].toString()
transtype = ddd.transtype[0]
}
POST /transact HTTP/1.1
Host: localhost:8080
Content-Type: application/json
Cache-Control: no-cache
Postman-Token: aa898872-e448-bace-9f6d-143bdc0b03db
[{
"accountno": 000710023005,
"transid": 16,
"transamt": 20.25,
"transtype": "withdrawal"
}]
我试图避免在控制器中使用jsonSlurper,但是没有它我无法获取值。
希望有帮助。