- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图在我的应用程序中处理 3 种不同的状态,在我家的 initState 中,我将事件称为“OnInitial”,假装是一种从本地数据库获取数据的方法。
正如您在方法中看到的那样,我将“6”设置为变量“number”,就像我所说的那样,假装这是我从数据库中获取的数据。我的事件完成获取数据并发出状态“ProductsTercero”,其中已经包含“分配的数据”。
在我的家里,如果状态是 ProductsTercero,我会用“msg”和“number”绘制一个列。当 inital 完成时,我的屏幕被正确重绘并显示
但我的问题如下。当我按下触发事件“OnTercero”的名为“Tercero”的按钮时在我的 Bloc 中,当调用此事件时,它会将“新消息”设置为 ProducsTercero 的变量“消息”。这是做什么的?下一个:
它删除了我之前设置的“数字 6”,也就是说,关于模拟,我将删除我从数据库中带来的所有数据。
我的预期结果是:
New msg
6
但是我得到了
New msg
0
我进行了调试,它似乎总是在创建一个新的 ProductsThird 对象。即使我做了 ProductsTercero().copyWith(msg: 'New msg');是一样的。
我只使用过 1 个状态,但这种情况并没有发生在我身上,因为我总是执行 state.copyWith();并且无论我是否传递它具有的 5 个属性中的 1 个属性,该状态的其他值始终保持不变。但是在这里,有多个状态并且有一个抽象状态类,我不能写 emit(state.copyWith(msg: 'New msg');
我做错了什么?在 X 状态下发射并且不会发生这种情况的正确方法是什么?
事件、状态和区 block 代码:
part of 'products_bloc.dart';
@immutable
abstract class ProductsEvent {}
class OnInitial extends ProductsEvent {}
class OnSegundo extends ProductsEvent {}
class OnTercero extends ProductsEvent {}
//**************************************************************//
part of 'products_bloc.dart';
@immutable
abstract class ProductsState {}
class ProductsInitial extends ProductsState {
final String? msg;
final int? numero;
ProductsInitial({numero, msg})
: msg = msg ?? 'MSG: Default Inicial',
numero = numero ?? 0;
ProductsInitial copywith({String? msg, int? numero}) =>
ProductsInitial(msg: msg ?? this.msg, numero: numero ?? this.numero);
}
class ProductsSegundo extends ProductsState {
final String? msg;
final int? numero;
ProductsSegundo({numero, msg})
: msg = msg ?? 'Second: Default Msg',
numero = numero ?? 0;
ProductsSegundo copywith({String? msg, int? numero}) =>
ProductsSegundo(msg: msg ?? this.msg, numero: numero ?? this.numero);
}
class ProductsTercero extends ProductsState {
final String? msg;
final int? numero;
ProductsTercero({numero, msg})
: msg = msg ?? 'Third: Default Msg',
numero = numero ?? 0;
ProductsTercero copywith({String? msg, int? numero}) =>
ProductsTercero(msg: msg ?? this.msg, numero: numero ?? this.numero);
}
//**********************************************************//
import 'package:bloc/bloc.dart';
import 'package:meta/meta.dart';
part 'products_event.dart';
part 'products_state.dart';
class ProductsBloc extends Bloc<ProductsEvent, ProductsState> {
ProductsBloc() : super(ProductsInitial()) {
on<OnInitial>((event, emit) {
emit(ProductsInitial().copywith(
msg: 'Initial msg'
));
emit(ProductsTercero(numero: 6));
});
on<OnSegundo>((event, emit) {
emit(ProductsSegundo());
});
on<OnTercero>((event, emit) {
emit(ProductsTercero(msg: 'New msg'));
});
}
}
首页代码:
import 'package:bloc_test/src/bloc/products/products_bloc.dart';
import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
class HomePage extends StatefulWidget {
const HomePage({Key? key}) : super(key: key);
@override
State<HomePage> createState() => _HomePageState();
}
class _HomePageState extends State<HomePage> {
@override
void initState() {
BlocProvider.of<ProductsBloc>(context).add(OnInitial());
super.initState();
}
@override
Widget build(BuildContext context) {
return BlocBuilder<ProductsBloc, ProductsState>(
builder: (context, state) {
return Scaffold(
body: Column(
crossAxisAlignment: CrossAxisAlignment.center,
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
(state is ProductsInitial) ? Column(
children: [
Center(child: Text(state.msg!)),
Center(child: Text(state.numero!.toString())),
],
)
: (state is ProductsSegundo) ? Column(
children: [
Center(child: Text(state.msg!)),
Center(child: Text(state.numero!.toString())),
],
)
: (state is ProductsTercero) ? Column(
children: [
Center(child: Text(state.msg!)),
Center(child: Text(state.numero!.toString())),
],
)
: Center(child: Text('Nada')),
SizedBox(
height: 40,
width: double.infinity,
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceAround,
children: <Widget>[
ElevatedButton(
onPressed: () {
BlocProvider.of<ProductsBloc>(context).add(OnInitial());
},
child: Text('Initial')),
ElevatedButton(
onPressed: () {
BlocProvider.of<ProductsBloc>(context).add(OnSegundo());
},
child: Text('Segundo')),
ElevatedButton(
onPressed: () {
BlocProvider.of<ProductsBloc>(context).add(OnTercero());
},
child: Text('Tercero'))
],
),
),
],
),
);
},
);
}
}
最佳答案
您没有在 emit(ProductsTercero(msg: 'New msg'));
上传递 num 值
因为 num == null 然后它被设置为 0,如您的代码所定义。
尝试像下面这样替换
on<OnTercero>((event, emit) {
emit(ProductsTercero(msg: 'New msg',numero: 6));
});
关于flutter - 如何管理同一 Bloc 内的不同国家? flutter ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69912666/
这个问题在这里已经有了答案: Where am I? - Get country (10 个答案) How can I get my Android device country code with
有办法检查吗?我有一个应用程序 URL,除非用户有英国应用商店,否则我不想打开该 URL。不幸的是,这个应用程序在许多国家/地区都可用,因此当我在链接上添加“gb”时,它会被重定向到用户的本地区域。
已结束。此问题正在寻求书籍、工具、软件库等的推荐。它不满足 Stack Overflow guidelines 。目前不接受答案。 我们不允许提出寻求书籍、工具、软件库等推荐的问题。您可以编辑问题,以
获取设备当前区域的最佳方法是什么?假设用户在德国并使用意大利语作为设备语言。如果我使用 Locale.getDefault(),那么国家和语言就会相互映射,即语言是it,国家是IT。我想要的是它和DE
有人可以给我一个示例或教程,其中显示国家及其代码的下拉列表我的代码显示错误的新西兰语言代码,它显示 mi-NZ 而不是 en-NZ ASP.NET protected void Page_Load(o
我是 Ajax 和 PHP 的新手,遇到动态下拉国家和州的问题。 虽然我已经检查了 stackOverflow 中的所有答案,但我无法清楚地了解我们应该如何成功地编写代码以获得所需的结果。 count
我一直在开发一个注册表单应用程序,其中使用了几个微调器小部件。微调器用于选择国家、州和城市。因此,这些微调器需要以某种方式相互连接(下面的代码将展示我如何尝试实现这一点)。 表单代码: fragmen
如果你去http://profile.microsoft.com并编辑您的个人信息,您将选择您的国家。选择国家/地区后,城市和/或州信息会根据该国家/地区的预期变化。有没有人有任何关于如何实现这一目标
我有一个带有经纬度坐标的 data.frame: df<-data.frame( lat=c(40, 30, 40.864), lon=c(0, 20, 1.274) )
我正在尝试在将与 django-allauth 一起使用的注册表中添加 django-countries。按照说明 https://github.com/SmileyChris/django-coun
嗨,我想为国家和州实现下拉列表。州下拉列表应根据所选国家/地区更改其值。 是否有任何插件或 gem 可以在 Rails 中执行此操作。 最佳答案 试试卡门插件: http://autonomousma
我的服务器上安装了基于PHP的Youtube克隆系统。 几个国家使用相同的系统。假设我有3个域都指向同一系统: www.site.hr www.site.ba www.site.rs 他们都重定向到一
在我的 Azure DNS 和域提供商中设置后,我想使用我的国家/地区域名 mydomain.id,但我仍然无法在应用服务中验证我的域。我已经仔细检查了所有内容,我认为我的设置已经正确。现在我想知道我
最近,我们开始遇到向网络应用程序的用户呈现过时的国家/地区列表的问题。 我们目前有一些数据库表来存储本地化的国家/地区名称及其地区(州)。然而,随着地球的发展,该列表在不断演变,并且事实证明维护起来很
This is the third iteration of this question as errors have been solved (在一些人的感激帮助下)。为了避免对到底发生了什么感到困
全部, 我们的应用程序需要有关 ISO 国家和货币的数据(其中数据必须是最新的)。我们确实从 ISO 自己购买了国家/货币数据,但是我们仍然需要对数据执行大量手动操作,以及编写我们自己的工具来读取数据
已结束。此问题正在寻求书籍、工具、软件库等的推荐。它不满足Stack Overflow guidelines 。目前不接受答案。 我们不允许提出寻求书籍、工具、软件库等推荐的问题。您可以编辑问题,以便
我想使用 PHP 和 jQuery 执行以下操作 https://www.careerbuilder.com/share/register.aspx?sc_cmp1=JS_LoginASPX_RegN
假设我们有一个包含所有国家/地区代码的代码列表。国家代码是 Countries 表的主键,它在数据库中的许多地方用作外键。在我的应用程序中,国家通常显示为多个表单的下拉列表。 一些过去曾经存在的国家不
我想根据语言环境获取当前日期/时间。如果我传递 locale 对象,我需要获取国家/地区的相关日期/时间。 最佳答案 从 Java 8 开始,您有 LocalDateTime 和 ZonedDateT
我是一名优秀的程序员,十分优秀!