我正在尝试从api获取新闻数据并在首页中显示新闻标题 据我所知,它将没有任何内部更改,因此我决定使用 StatelessWidget 以及 PROVIDER 状态管理 现在我在如何使用StatelessWidget调用获取方法方面遇到麻烦,因此我可以显示标题
这是我的获取数据类
class NewsRequest with ChangeNotifier{
static String _url ="https://newsapi.org/v2/everything?q=bitcoin&from=2019-06-24&sortBy=publishedAt&apiKey=4d990bdd71324572bca39fe31edc3990";
static Map<String, String> _apiKey = {"apiKey" : "4d990bdd71324572bca39fe31edc3990"};
Map <String, dynamic> _data;
List _articles;
bool _isFetching = false;
Map<String, dynamic> result;
bool get isFetching => _isFetching;
Future<Map<String, dynamic>> fetchData() async{
_isFetching = true;
try{
Response response = await get(Uri.encodeFull(_url), headers: _apiKey)
.timeout(Duration(seconds: 60));
print("STATUSCODE ${response.statusCode}");
if(response.statusCode == 200){
_data = json.decode(response.body);
}
_isFetching = false;
notifyListeners();
}on SocketException catch(_){
}on TimeoutException catch(_){
}catch(e){
e.toString();
print('CATCH ${e.toString()}');
}
return null;
}
Map<String, dynamic> get getNews => _data;
Map<String , dynamic> getNewsData(){
if(_data == null){
print('data is null');
return null;
}else{
_articles = _data['articles'];
}
print("FIRST ARTICALE IS : ${_articles[0]}");
return null;
}
}
我的主页呼叫是
body: newsResponse.isFetching
? Center(
child: CircularProgressIndicator(),
)
: newsResponse.getNewsData()!= null ?
new ListView.builder(
itemCount: newsResponse.getNewsData().length,
itemBuilder: (BuildContext context, int index) {
return new Container(
padding: EdgeInsets.all(10),
child: Stack(
children: <Widget>[
Container(
height: 100,
width: 310,
),
child: Wrap(children: <Widget>[
Text( newsResponse.result['response'][index]['title']),
]),
),
CircleAvatar(
radius: 50,
backgroundImage: NetworkImage(
newsResponse.result['response'][index]["urlToImage"]??"",
),
),
],
),
);
},
):
Container()
我需要调用 fetchData()方法来运行所有人员
答案 0 :(得分:0)
您可以直接在ChangeNotifier
的构造函数中启动请求:
class MyNotifier with ChangeNotifer {
MyNotifier() {
// TODO: do an http request
}
}
答案 1 :(得分:0)
您应该用 Consumer 来包裹您的身体, 像这样的东西:
Consumer(BuildContext context , NewsRequest model , child)
{
return model.isFetching?
// put the rest of your code here
}
答案 2 :(得分:0)
因此,选项为:
您可能知道,第一个是有状态的东西,而选项#2是无状态的东西。
AFAIK,最好的方法是:
示例实现: 在我的一个应用程序中,我有一个列表可以从Web API提取并显示在移动应用程序中。我将整体功能分为两个文件。列表一的主要文件/类是无状态的。
在头文件中,我得到如下数据:
@override
void didChangeDependencies() {
super.didChangeDependencies();
_requestLeaveList();
}
这将设置一个名为_leaveList的变量。
现在,我按如下所示调用屏幕:
Expanded(
child: LeaveListView(leaves: _listLeaves,),
)
LeaveListView是无状态的。