web-dev-qa-db-ja.com

Alamofireリクエストで画像データを取得する

コードをSwift 3に更新しましたが、Alamofire 4.0への移行に問題があります。Alamofire移行ガイドを使用して、必要な変更のほとんどを成功させましたが、画像データの取得に問題があります。

古いSwift 2/Alamofireコード(意図したとおりに機能しました):

_func beginGetImageRequest() {
    if let imagePath = thumbPath {
        request = Alamofire.request(.GET, imagePath).response(completionHandler: { (_, _, imageData, error) -> Void in
            if error != nil {
                NSLog("Error downloading thumbnail image: \(error)")
            } else {
                if let downloadedImage = UIImage(data: imageData!) {
                    self.imageView.image = downloadedImage
                }
            }
        })
    }
}
_

Alamofire 4:に更新する私の試み

_func beginGetImageRequest() {
    if let imagePath = thumbPath {
        request = Alamofire.request(imagePath, method: .get, parameters: [:], encoding: JSONEncoding.default)
            .validate { request, response, imageData in
                if let downloadedImage = UIImage(data: imageData!) {
                    self.imageView.image = downloadedImage
                } else {
                    print(response)
                    print(imageData)
                }
                return .success
            }
    }
}
_

print(imageData)Optional(306 bytes)を出力します。画像は約40 kbである必要があります。これは、データをUIImageに変換する方法ではなく、リクエストを実装する方法に問題があることを示しています。

これがprint(response)の出力です

_<NSHTTPURLResponse: 0x618000221660> { URL: http://209.126.98.238/cache/igames_thumb/images/games/53848027743af.jpeg } { status code: 400, headers {
    Connection = close;
    "Content-Encoding" = gzip;
    "Content-Length" = 245;
    2016-10-04 21:54:53.653480 EyeGames[74216:3416747] [] nw_connection_send_stats_report 21 Generated report: 
    Delegated:                                  0
    Report reason:                              app data stall
    TCP statistics report:                      
    Time to DNS start:                       0 ms
    Time to DNS resolved:                    0 ms
    DNS resolved time:                       0 ms
    DNS answers cached:                      0
    Interface type:                          1
    Time to TCP start:                       3 ms
    Time to TCP establishment:               223 ms
    Connection establishment:                220 ms
    Flow duration:                           11447 ms
    Connected interface type:                1
    Connected:                               1
    Traffic class:                           0
    Cellular fallback:                       0
    Cellular RRC connected:                  0
    Kernel reported stalls:                  0
    Kernel reported connection stalls:       0
    Kernel reported read stalls:             0
    Kernel reported write stalls:
"Content-Type" = "text/html; charset=iso-8859-1";
    Date = "Tue, 04 Oct 2016 18:54:43 GMT";
    Server = "Apache/2.2.22 (Debian)";
    Vary = "Accept-Encoding";
} }
_
12
Austin Wood

Alamofireのスタッフは、画像コンポーネントライブラリ AlamofireImage を作成しました。それはあなたがあなたの人生を楽にするためにあなたがこのすべてのものを処理します。それをプロジェクトに追加すると、次のようになります。

import Alamofire
import AlamofireImage

Alamofire.request(imageUrl, method: .get).responseImage { response in
    guard let image = response.result.value else {
        // Handle error
        return
    }
    // Do stuff with your image
}
23
DerFlickschter

Alamofireを使用して画像をダウンロードしたい場合は、上記のコメントでGodfatherが提案したように、JSONEncodingではなくURLEncodingを試してください。代わりにKingfisherを使用することをお勧めします。 AlamofireのGETリクエストメソッドではなく、1行のコードが必要になります。

self.imageView.kf.setImage(with: URL(string: imagePath))
2
alexburtnik

以前に保存した画像を取得すると、画像キャッシュの問題が発生する可能性があります。

これを防ぐには、Alamofire.requestを呼び出す前にURLのキャッシュを削除します

let urlRequest = URLRequest(url: URL(string: url)!)
URLCache.shared.removeCachedResponse(for: urlRequest)
0

指定されたURLから直接画像をダウンロードできます。

import AlamofireImage

let URL = URL(string: "your image url")

imageView.af_setImage(withURL: URL!)

これがうまくいくことを願っています:)

0
Raghib Arshi