gpt4 book ai didi

SWIFT URL 字符串构建

转载 作者:可可西里 更新时间:2023-11-01 00:40:06 27 4
gpt4 key购买 nike

如何构建如下 URL:

/sap/opu/odata/SAP/ZTM_FOR_MOBILITY_SRV/BusinessPartnerSet('BP-CR-EM01')/?$format=json

我特别想要零件 - BusinessPartnerSet('BP-CR-EM01')。

BP-CR-EM01 值为动态值。

let newUrl = url  + "'\(businessPartners[myIndex].partnerId)'"

url 具有固定的 URL 和 + 运算符,后跟动态值。请帮我提出你的建议。

最佳答案

我推荐使用URLComponents

var components = URLComponents(string: "http://mycompany.com")!
components.path = "/sap/opu/odata/SAP/ZTM_FOR_MOBILITY_SRV/BusinessPartnerSet('\(businessPartners[myIndex].partnerId)')/"
components.queryItems = [URLQueryItem(name: "$format", value:"json")]
if let url = components.url {
print(url)
// or if you need the string
print(url.absoluteString)
}

关于SWIFT URL 字符串构建,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45490604/

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