gpt4 book ai didi

ios - 发布到服务器,将 ASIFormDataRequest 替换为 AFnetworking

转载 作者:行者123 更新时间:2023-11-29 03:08:24 24 4
gpt4 key购买 nike

我想在afnetworking中做一个post请求
这是我的 ASI 代码:

NSURL *mainurl = [NSURL URLWithString:@"xxxx/api/xxx/"];

ASIFormDataRequest *requestt = [ASIFormDataRequest requestWithURL:mainurl];

[requestt addPostValue:GETUnicidentifire forKey:@"UniqueId"];
[requestt addPostValue:JsonOrderDetail forKey:@"jsonProduct"];
[requestt addPostValue:BranchId forKey:@"BranchId"];
[requestt addPostValue:OrderToTime forKey:@"OrderToTime"];

[requestt setCompletionBlock:^{
// Process the response




}];
[requestt setFailedBlock:^{
NSError *error = [requestt error];

如何在 AFnetworking 中做同样的丁字裤?

最佳答案

不是一个确切的答案,但这是来 self 的应用程序的一个非常相似的 POST 请求:

-(void)setGpsLocation:(CLLocation*)location success:(TPScopeInterfaceSuccess)success failure:(TPScopeInterfaceFailure)failure
{
[_manager POST:@"gps/"
parameters:@{
@"lat":@(location.coordinate.latitude),
@"lon":@(location.coordinate.longitude),
@"height":@(location.altitude),
}
constructingBodyWithBlock:nil
success:success
failure:failure];
}

_manager 是 AFHTTPRequestOperationManager 的实例,初始化为:

_manager = [[AFHTTPRequestOperationManager alloc] initWithBaseURL:[NSURL URLWithString:@"http://192.168.1.1/"]];

关于ios - 发布到服务器,将 ASIFormDataRequest 替换为 AFnetworking,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22512517/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com