https://flutter.dev/docs/cookbook/networking/fetch-data
上記ページの一番最後のComplete exampleで、
class Album { final int userId; final int id; final String title; Album({this.userId, this.id, this.title}); factory Album.fromJson(Map<String, dynamic> json) { return Album( userId: json['userId'], id: json['id'], title: json['title'], ); } }
リクエストで受け取るJSON文字列を受け取ってアプリ内で扱うためのAlbumクラスなのですが、
コンストラクタが通常のコンストラクタに加えて、factoryコンストラクタを用意しています。
factoryコンストラクタについては、
https://dart.dev/guides/language/language-tour#constructors
上記ページのFactory constructorsの部分は読みました。
サンプルにあるLoggerクラスのfactoryコンストラクタは確かに常に新しいインスタンスを生成する訳ではないので、
factoryキーワードをつけるのは理解できるのですが、
今回のComplete exampleのAlbumクラスでもfactoryコンストラクタ使わないといけないのでしょうか?
Albumクラスの場合結局factoryコンストラクタの中で通常のコンストラクタを使っているので、
このfactoryコンストラクタ(Album.fromJson)は常に新しいインスタンスを生成するような気がします。
実際、
Future<Album> fetchAlbum() async { final response = await http.get('https://jsonplaceholder.typicode.com/albums/16'); if (response.statusCode == 200) { // If the server did return a 200 OK response, // then parse the JSON. var temp=json.decode(response.body); return Album(userId:temp['userId'],id:temp['id'],title:temp['title']); } else { // If the server did not return a 200 OK response, // then throw an exception. throw Exception('Failed to load album'); } }
上記のように通常のコンストラクタだけでやってみても特に問題無く動いているように見えます。
factoryコンストラクタを用意して使った方が何かメリットがあるんでしょうか?
あるいはこの場面でfactoryコンストラクタ使わないと何か問題があるのでしょうか?
そもそもfactoryコンストラクタをいつ使うのかいまいちはっきりしないのですが、
はっきりした定義があるのでしょうか?
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/08/29 05:25
2020/08/29 05:47
2020/09/06 01:41