gpt4 book ai didi

ios - NSURL URLWithString 到相对 url

转载 作者:行者123 更新时间:2023-11-28 17:34:47 27 4
gpt4 key购买 nike

我想从 ios 应用程序上传一个图像(UIImage)到 django 网站。(那里有表单和提交按钮,就像普通网页一样。)

所以我决定为此使用 ASIFormDataRequest。 (我是菜鸟,我做得对吗?)

首先,

NSURL *url = [NSURL URLWithString:@"http://someec2site/profile/album/2/upload/"];

错误:当前 URL profile/album/2/upload/ 与其中任何一个都不匹配。

所以,我做到了,

NSURL *url = [NSURL URLWithString:@"http://someec2site/profile/albums/(?P<album_id>\d+)/upload/"];

错误:未知的转义序列'\d'

我有一个问题。

1) 我做得对吗?

2) 如何获取字符串的相对 URL? (基于url.py重定向url)

最佳答案

首先,您选择使用 ASI 非常适合 HTTP 请求。

如果我没有弄错的话,您正在尝试为不同的相册 ID 构建上传 URL。

你为什么不试试这个:

NSString * urlString = [NSString stringWithFormat:@"http://someec2site/profile/album/%d/upload/",albumId];
NSURL * url = [NSURL urlWithString:urlString];

关于ios - NSURL URLWithString 到相对 url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10154747/

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