我需要使用以下字段为模型请求创建固定装置: 正文-> JSON created_at-日期时间 Updated_at-日期时间 remote_ip-即127.0.0.01 状态-即1
我尝试过:
request1:
body: {"title": "test", "Action": "test_action"}
created_at: 2018-06-13 21:15:51
updated_at: 2018-06-13 21:15:51
remote_ip: 127.0.0.1
status: 1
但是结果是我在db的body列中没有得到JSON,但是
---
title: test
Action: test action
我应该怎么做才能在body字段中获取完整的JSON?
答案 0 :(得分:0)
我找到的最简单的解决方案是将json视为字符串:
body: '{"title": "test", "Action": "test_action"}'
它可以工作,但是我不确定这是否是最好的解决方案。...