• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - 如何在参数下发送发布请求?

[复制链接]
菜鸟教程小白 发表于 2022-12-12 19:44:59 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我有一些参数可以向服务器发送 post 请求:

`[{"LoginID":151,"UserID":0,"SubUserID":0,"WorkGroupID":92,"WorksFor":"Doctor","UserWorkGroup":0},{"SearchingFilters":{"GroupingOperator":"And","Filters":[{"SearchingValue":"04-13-2016","SearchingName":"AppointmentDate","SearchingOperator":"Ge"},{"SearchingValue":"04-27-2016","SearchingName":"AppointmentDate","SearchingOperator":"Le"}],"Groups":[{"Groups":[],"GroupingOperator":"And","Filters":[]}]},"Searching":true,"SortingOrder":"Desc","RecordsCount":10,"ageIndex":0}]`

如何以这种格式发送?

[getProfileServices sendSynchronousPostRequestWithStringForAction:getProfileURL andParameters:[[NSDictionary alloc] initWithObjectsAndKeys:[[NSUserDefaults standardUserDefaults] objectForKey"USER_ID"],@"LoginID",@"0",@"UserID",@"0",@"SubUserID",[[NSUserDefaults standardUserDefaults] objectForKey"WORK_ID"],@"WorkGroupID",@"Doctor",@"WorksFor",@"0",@"UserWorkGroup",nil] andRequestType"OST"];



Best Answer-推荐答案


首先你需要使用json格式发送请求,而不是直接作为对象

第二个

我认为服务需要改变

服务应该以这种格式接受您的请求。

{
  "LoginID": 151,
  "UserID": 0,
  "SubUserID": 0,
  "WorkGroupID": 92,
  "WorksFor": "Doctor",
  "UserWorkGroup": 0,
  "SearchingFilters": {
    "GroupingOperator": "And",
    "Filters": [
      {
        "SearchingValue": "04-13-2016",
        "SearchingName": "AppointmentDate",
        "SearchingOperator": "Ge"
      },
      {
        "SearchingValue": "04-27-2016",
        "SearchingName": "AppointmentDate",
        "SearchingOperator": "Le"
      }
    ],
    "Groups": [
      {
        "Groups": [

        ],
        "GroupingOperator": "And",
        "Filters": [

        ]
      }
    ]
  },
  "Searching": true,
  "SortingOrder": "Desc",
  "RecordsCount": 10,
  "ageIndex": 0
}

如果您需要将其作为单个对象传递,否则如果在请求中发送多个对象,则将其添加到数组中

关于ios - 如何在参数下发送发布请求?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37043084/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap