颤动:根据某些条件筛选列表

时间:2018-03-30 17:12:42

标签: dart flutter

我有电影列表。这包含所有Animated&非动画电影。要确定其动画是否有一个标记为 isAnimated

我想只播放动画电影。我编写的代码只过滤掉了动画电影,但却出现了一些错误。

import 'package:flutter/material.dart';

void main() => runApp(new MyApp());

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return new MaterialApp(
      title: 'Flutter Demo',
      theme: new ThemeData(

        primarySwatch: Colors.blue,
      ),
      home: new HomePage(),
    );
  }
}

class Movie {
  Movie({this.movieName, this.isAnimated, this.rating});
  final String movieName;
  final bool isAnimated;
  final double rating;
}

List<Movie> AllMovies = [
  new Movie(movieName: "Toy Story",isAnimated: true,rating: 4.0),
  new Movie(movieName: "How to Train Your Dragon",isAnimated: true,rating: 4.0),
  new Movie(movieName: "Hate Story",isAnimated: false,rating: 1.0),
  new Movie(movieName: "Minions",isAnimated: true,rating: 4.0),
];



class HomePage extends StatefulWidget{
  @override
  _homePageState createState() => new _homePageState();
}


class _homePageState extends State<HomePage> {

  List<Movie> _AnimatedMovies = null;

  @override
  void initState() {
    super.initState();
    _AnimatedMovies = AllMovies.where((i) => i.isAnimated);
  }

  @override
  Widget build(BuildContext context) {
    return new Scaffold(
      body: new Container(
        child: new Text(
            "All Animated Movies here"
        ),
      ),
    );
  }
}

WhereIterable<Object> is not subtype of type List<Object>

6 个答案:

答案 0 :(得分:47)

实现结果

时缺少

toList()

_AnimatedMovies = AllMovies.where((i) => i.isAnimated).toList();

答案 1 :(得分:1)

您可以使用toList()方法来获得所需的输出,如下所示

toList()将此流中的所有元素收集到List中。

要解决上述问题:

添加一个toList()(此代码创建一个List<dynamic>

_AnimatedMovies = AllMovies.where((i) => i.isAnimated).toList();

代替

_AnimatedMovies = AllMovies.where((i) => i.isAnimated);

enter image description here

答案 2 :(得分:0)

List上的where函数返回Iterable。您必须使用功能List.from(Iterable)将其转换为List。

因此,在上述情况下,您应该使用以下代码段。

Iterable _AnimatedMoviesIterable = AllMovies.where(((i)=> i.isAnimated);

_AnimatedMovies = List.from(_AnimatedMoviesIterable);

答案 3 :(得分:0)

您可以将其用于特定条件

List<String> strings = ['one', 'two', 'three', 'four', 'five'];
List<String> filteredStrings  = strings.where((item) {
   return item.length == 3;
});

答案 4 :(得分:0)

这里课程是一个列表。注释星标设置到课程列表的元素。 starred 是一个 bool 类型变量。

courses = courses.where((element) => !element.starred).toList();

答案 5 :(得分:0)

解决方案就在这里

<块引用>

试试这个函数 catogoryList(),
这里的条件是列表中的 catogory_id == '1'

List<dynamic> catogoryList(List<dynamic> inputlist) {
    List outputList = list.where((o) => o['category_id'] == '1').toList();
    return outputList;
  }