1

我在 Flutter 中使用 FutureBuilder 时遇到问题。

使用 FutureBuilder,页面会不断重建。

我省略了写问题的详细代码。如果您想查看其他代码,请发表评论。

要阻止这种情况,我该怎么办?

Future<bool> initLikes() async {
    var list = await ApiProvider().post('/RoomSalesInfo/Select/Like', jsonEncode(
        {
          "userID" : GlobalProfile.loggedInUser.userID,
        }
    ));
      return true;
    } else {
      return false;
    }
  }

//This is the Code that I use in Widget build
FutureBuilder(
                    future: initLikes(),
                    builder: (BuildContext context, AsyncSnapshot snapshot) {
                      //해당 부분은 data를 아직 받아 오지 못했을때 실행되는 부분을 의미한다.
                      if (snapshot.hasData == false) {
                        return SizedBox();
                      }
                      //error가 발생하게 될 경우 반환하게 되는 부분
                      // 데이터를 정상적으로 받아오게 되면 다음 부분을 실행하게 되는 것이다.
                      else {
                        return Expanded(
                          child: ListView.builder(
                              physics: ClampingScrollPhysics(),
                              shrinkWrap: true,
                              scrollDirection: Axis.vertical,
                              controller: _scrollController,
                              itemCount: GlobalProfile.listForMe.length +1,
                              itemBuilder: (BuildContext context, int index) {
                                if(index == GlobalProfile.listForMe.length){
                                  return CupertinoActivityIndicator();
                                }
                                else
                                  return  Column();
                              }


                          ),
                        );
                      }
                    })
4

1 回答 1

0
future: initLikes(),

不要重新计算这个。新的调用将覆盖旧的。而是使用 initState() 将其计算为您从“future:..”引用的变量。

于 2021-01-06T03:29:43.860 回答