带有参数值点(“.”)的 iPhone 字符串 url 不起作用

发布于 2024-11-26 10:47:52 字数 520 浏览 2 评论 0原文

NSString *lDownloadURL = [NSString
      stringWithFormat:@"https://xxxx.com/tes.php?filename=%@",
                       tUniqueId]; // tUniqueId=1311454454.4270
NSString *result=
 [lDownloadURL stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
NSLog(@"Download URL: %@", lDownloadURL); 
[helper download:lDownloadURL]; 

// 当我试图传递这个 url 时,它显示以下错误

数据失败:URL 无效 [https://xxxx.com/tes.php?filename=1311454454.4270]

请尽快帮助我...提前谢谢

NSString *lDownloadURL = [NSString
      stringWithFormat:@"https://xxxx.com/tes.php?filename=%@",
                       tUniqueId]; // tUniqueId=1311454454.4270
NSString *result=
 [lDownloadURL stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
NSLog(@"Download URL: %@", lDownloadURL); 
[helper download:lDownloadURL]; 

// when im trying to pass this url its showing the follwing error

Data failed: Invalid URL
[https://xxxx.com/tes.php?filename=1311454454.4270]

please help me soon... advance thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

千仐 2024-12-03 10:47:52

您是指 test.php 而不是 tes.php 吗?

Did you mean test.php instead of tes.php?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文