當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Swift Result.Publisher tryMap(_:)用法及代碼示例


實例方法

tryMap(_:)

使用提供的 error-throwing 閉包轉換來自上遊發布者的所有元素。

聲明

func tryMap<T>(_ transform: @escaping (Self.Output) throws -> T) -> Publishers.TryMap<Self, T>

返回值

發布者使用提供的閉包將元素從上遊發布者映射到然後發布的新元素。

參數

transform

將一個元素作為其參數並返回一個新元素的閉包。如果閉包拋出錯誤,則發布者將失敗並拋出錯誤。

詳述

Combine 的 Publisher/tryMap(_:) 操作符執行的函數類似於 Swift 標準庫中的 map(_:) :它使用閉包來轉換從上遊發布者接收到的每個元素。您可以使用 Publisher/tryMap(_:) 從一種元素轉換為另一種元素,並在Map的關閉引發錯誤時終止發布。

以下示例使用數字數組作為基於集合的發布者的源。 Publisher/tryMap(_:) 運算符使用來自發布者的每個整數,並使用字典將其從阿拉伯數字轉換為羅馬等價數字,如 String 。如果 Publisher/tryMap(_:) 的閉包無法查找羅馬數字,則會引發錯誤。 Publisher/tryMap(_:) 運算符捕獲此錯誤並終止發布,發送包裝錯誤的 Subscribers/Completion/failure(_:)


struct ParseError: Error {}
func romanNumeral(from:Int) throws -> String {
    let romanNumeralDict: [Int : String] =
        [1:"I", 2:"II", 3:"III", 4:"IV", 5:"V"]
    guard let numeral = romanNumeralDict[from] else {
        throw ParseError()
    }
    return numeral
}
let numbers = [5, 4, 3, 2, 1, 0]
cancellable = numbers.publisher
    .tryMap { try romanNumeral(from: $0) }
    .sink(
        receiveCompletion: { print ("completion: \($0)") },
        receiveValue: { print ("\($0)", terminator: " ") }
     )


// Prints: "V IV III II I completion: failure(ParseError())"

如果您的閉包沒有拋出,請改用Publisher/map(_:)-99evh

可用版本

iOS 13.0+, iPadOS 13.0+, macOS 10.15+, Mac Catalyst 13.0+, tvOS 13.0+, watchOS 6.0+

相關用法


注:本文由純淨天空篩選整理自apple.com大神的英文原創作品 Result.Publisher tryMap(_:)。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。