我在一个 Postman 请求中使用了以下JSON主体,但我收到了一个END OF FILE Expected错误:
"customer": {
"gender": 1,
"company": "MyCompany",
"name": "Doe",
"firstname": "John",
"phone": "0606060606"
,
"address": {
"address": "123 main street",
"address2": "456 second street",
"postalCode": 17101,
"city": "Anytown",
"country": "UK"
},
"references": [
123458,
154568
]
}
1条答案
按热度按时间iih3973s1#
json
对象应该以{
开头,以}
结尾。您应该具有: