有没有人设法使用POST方法从Swift调用MobileFirst JS适配器?
即。
let request = WLResourceRequest(URL: NSURL(string: “/adapters/myadapter”), method: WLHttpMethodPost)
request.sendWithFormParameters(formParams) { (WLResponse response, NSError error) -> Void in
我们应该如何构建Swift中的formParams
和JS中的适配器方法?调用适配器时,我们无法提取表单参数。
答案 0 :(得分:1)
您的表单参数应该只包含一个名为“params”的参数,其中包含代表string
的{{1}}。
例如:
array