如何在Moya中通过POST请求传递JSON正文

sat*_*ish 6 ios swift moya

我正在使用moya库发出POST请求。在Tar​​getType中,我看不到任何属性来将参数[JSON body]与POST请求一起传递。在这里,我附加了TargetType

public protocol TargetType {

    /// The target's base `URL`.
    var baseURL: URL { get }

    /// The path to be appended to `baseURL` to form the full `URL`.
    var path: String { get }

    /// The HTTP method used in the request.
    var method: Moya.Method { get }

    /// Provides stub data for use in testing.
    var sampleData: Data { get }

    /// The type of HTTP task to be performed.
    var task: Task { get }

    /// Whether or not to perform Alamofire validation. Defaults to `false`.
    var validate: Bool { get }

    /// The headers to be used in the request.
    var headers: [String: String]? { get }
}

public extension TargetType {
    var validate: Bool {
        return false
    }
}
Run Code Online (Sandbox Code Playgroud)

sat*_*ish 10

最后,我为我的问题找到了解决方案。在Moya 10.0中,我们可以在任务属性[TargetType]中传递http正文JSON有效负载。

点击这里参考

var task: Task {
    switch self {
    case .zen, .showUser, .showAccounts: // Send no parameters
        return .requestPlain
    case let .updateUser(_, firstName, lastName):  // Always sends parameters in URL, regardless of which HTTP method is used
        return .requestParameters(parameters: ["first_name": firstName, "last_name": lastName], encoding: URLEncoding.queryString)
    case let .createUser(firstName, lastName): // Always send parameters as JSON in request body
        return .requestParameters(parameters: ["first_name": firstName, "last_name": lastName], encoding: JSONEncoding.default)
    }
}
Run Code Online (Sandbox Code Playgroud)