- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在按照 this tutorial 中描述的模式构建一个 flutter 应用程序使用 Provider (3.1.0) 中的 MultiProvider。
在我的主页中,我想加载配置数据( field 货币符号)但不显示模型。我在上面链接的教程中使用了类似于登录服务的模式,但是当我尝试使用值 Provider.of<Venue>(context).currency
时在另一种观点(账单)中,我得到了这个错误。
The following NoSuchMethodError was thrown building BillListItem(dirty, dependencies: [InheritedProvider]): The getter 'currency' was called on null. Receiver: null Tried calling: currency
我无法弄清楚与我可以获得 Provider.of
这是我的代码:
主.dart
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MultiProvider(
providers: providers,
child: MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
initialRoute: RoutePaths.Login,
onGenerateRoute: Router.generateRoute,
),
);
}
}
我想在其中使用提供者值的 View 。
class BillListItem extends StatelessWidget {
final Bill bill;
final Function onTap;
const BillListItem({this.bill, this.onTap});
@override
Widget build(BuildContext context) {
return GestureDetector(
onTap: onTap,
child: Container(
margin: EdgeInsets.symmetric(horizontal: 20.0, vertical: 15.0),
padding: EdgeInsets.all(10.0),
decoration: BoxDecoration(
color: Colors.white,
borderRadius: BorderRadius.circular(5.0),
boxShadow: [
BoxShadow(
blurRadius: 3.0,
offset: Offset(0.0, 2.0),
color: Color.fromARGB(80, 0, 0, 0))
]),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
Text(bill.billNumber.toString(), style: TextStyle(fontWeight: FontWeight.w900, fontSize: 16.0),),
Text("${Provider.of<Venue>(context).currency}${bill.payable.toString()}", style: TextStyle(fontWeight: FontWeight.w900, fontSize: 16.0),),
],
),
),
);
}
}
我注入(inject) field 的选项卡 View :
class TabContainer extends StatefulWidget {
@override
State<StatefulWidget> createState() => TabContainerState();
}
class TabContainerState extends State<TabContainer> {
@override
void initState(){
super.initState();
WidgetsBinding.instance.addPostFrameCallback((_) => _fetchVenue(context));
}
@override
Widget build(BuildContext context) {
return BaseWidget<VenueModel>(
model: VenueModel(venueService: Provider.of(context)),
builder: (context, model, child) => DefaultTabController(
length: 2,
child: Scaffold(
appBar: AppBar(
bottom: TabBar(
isScrollable: false,
tabs: [
Tab(icon: Icon(Icons.home)),
Tab(icon: Icon(Icons.room_service)),
],
),
centerTitle : true,
title: Text('Exact POS'),
actions: <Widget>[
FutureBuilder<String>(
future: SharedPreferencesHelper.getLanguageCode(),
initialData: 'en',
builder: (BuildContext context, AsyncSnapshot<String> snapshot) {
return snapshot.hasData
? BuildFlag.buildFlag(context, snapshot.data)
: Container();
}
),
]
),
body: SafeArea(
child: TabBarView(
children: [
HomeView(),
LoginView(),
],
),
),
)
)
);
}
void _fetchVenue(BuildContext context) async {
Api _api = new Api();
VenueService _venueService = new VenueService(api: _api);
VenueModel _venueModel = new VenueModel(venueService: _venueService);
var success = await _venueModel.fetchVenue();
}
}
home_view.dart
.我怀疑这可能是我需要注入(inject) Venue
的地方提供者而不是 TabContainer
.
class HomeView extends StatefulWidget{
@override
State<StatefulWidget> createState() => HomeViewState();
}
class HomeViewState extends State<HomeView> {
@override
void initState(){
super.initState();
WidgetsBinding.instance.addPostFrameCallback((_) => showSnackBar());
}
void showSnackBar(){
Scaffold.of(context).showSnackBar(SnackBar(
content: Text('Welcome ${Provider.of<User>(context).name}',
style: snackBarStyle),
backgroundColor: snackBarColor,
duration: Duration(seconds: 4),
));
}
@override
Widget build(BuildContext context) {
return SafeArea(
child: Scaffold(
backgroundColor: backgroundColor,
body: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
UIHelper.verticalSpaceSmall,
Expanded(
child: Tables(),)
],
),
)
);
}
}
我的 View 模型 VenueModel
class VenueModel extends BaseModel {
VenueService _venueService;
VenueModel(
{@required VenueService venueService,}
) : _venueService = venueService;
Future<bool> fetchVenue() async {
setBusy(true);
var success = await _venueService.fetchVenue();
setBusy(false);
return success;
}
}
我的服务VenueService
class VenueService {
final Api _api;
VenueService({Api api}) : _api = api;
StreamController<Venue> _venueController = StreamController<Venue>();
Stream<Venue> get venue => _venueController.stream;
Future<bool> fetchVenue() async {
var fetchedVenue = await _api.getVenue();
var hasVenue = fetchedVenue != null;
if (hasVenue) {
_venueController.add(fetchedVenue);
}
return hasVenue;
}
}
我的 BaseModel.dart
class BaseModel extends ChangeNotifier {
bool _busy = false;
bool get busy => _busy;
void setBusy(bool value) {
_busy = value;
notifyListeners();
}
}
我的提供商设置代码:
List<SingleChildCloneableWidget> providers = [
...independentServices,
...dependentServices,
...uiConsumableProviders
];
List<SingleChildCloneableWidget> independentServices = [
Provider.value(value: Api())
];
List<SingleChildCloneableWidget> dependentServices = [
ProxyProvider<Api, AuthenticationService>(
builder: (context, api, authenticationService) => AuthenticationService(api: api),
),
ProxyProvider<Api, VenueService>(
builder: (context, api, venueService) => VenueService(api: api),
),
];
List<SingleChildCloneableWidget> uiConsumableProviders = [
StreamProvider<User>(
builder: (context) => Provider.of<AuthenticationService>(context, listen: false).user,
),
StreamProvider<Venue>(
builder: (context) => Provider.of<VenueService>(context, listen: false).venue,
),
];
base_widget.dart
class BaseWidget<T extends ChangeNotifier> extends StatefulWidget {
final Widget Function(BuildContext context, T model, Widget child) builder;
final T model;
final Widget child;
final Function(T) onModelReady;
BaseWidget({
Key key,
this.builder,
this.model,
this.child,
this.onModelReady,
}) : super(key: key);
_BaseWidgetState<T> createState() => _BaseWidgetState<T>();
}
class _BaseWidgetState<T extends ChangeNotifier> extends State<BaseWidget<T>> {
T model;
@override
void initState() {
model = widget.model;
if (widget.onModelReady != null) {
widget.onModelReady(model);
}
super.initState();
}
@override
Widget build(BuildContext context) {
return ChangeNotifierProvider<T>(
builder: (context) => model,
child: Consumer<T>(
builder: widget.builder,
child: widget.child,
),
);
}
}
最佳答案
The following NoSuchMethodError was thrown building BillListItem(dirty, dependencies: [InheritedProvider]): The getter 'currency' was called on null. Receiver: null Tried calling: currency
这个错误意味着Provider.of<Venue>(context)
正在返回 null
.这可能是由于 2 个原因:
null
值被添加到 VenueService
中的流中.鉴于您的代码,情况并非如此,这让我相信这是第二个原因:VenueService
中的流没有发出任何值, 所以流的初始数据是 null
在查看您的代码后,您唯一一次调用 fetchVenue
在VenueService
在您的标签 View 中:
WidgetsBinding.instance.addPostFrameCallback((_) => _fetchVenue(context));
void _fetchVenue(BuildContext context) async {
Api _api = new Api();
VenueService _venueService = new VenueService(api: _api);
VenueModel _venueModel = new VenueModel(venueService: _venueService);
var success = await _venueModel.fetchVenue();
}
在你的_fetchVenue
函数,您实际上是在创建 Api
的新实例, VenueService
和 VenueModel
不会在应用程序的其他任何地方使用。实际VenueService
在提供者列表中保持不变。 fetchVenue
实际中的功能VenueService
永远不会被调用,这就是为什么 Provider.of<Venue>(context)
返回 null
,因为流没有值。
所以你可以替换你的_fetchVenue
功能:
void _fetchVenue(BuildContext context) async {
VenueService _venueService = Provider.of(context);
VenueModel _venueModel = new VenueModel(venueService: _venueService);
var success = await _venueModel.fetchVenue();
}
仍然需要进行一些改进,例如 _venueModel
没有在任何地方使用,但我希望这能解决你的问题!
关于flutter - 如何使用 Provider 在我的 Flutter View 中获取 Provider 值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58908804/
正在复制的问题是,当sew呈现登录页面时,然后我们继续执行身份验证,现在将我们重定向到网站的仪表板,此时我们继续关闭会话,并且在之前的交互中生成的这些cookie没有被删除。这个问题是重复性的,并且一
我是 Flutter 的新手,目前正在研究 DI。 我正在使用 flutter_bloc 和 provider 包。 flutter_bloc 附带一个 RepositoryProvider,我现在问
我是 Flutter 的新手,目前正在研究 DI。 我正在使用 flutter_bloc 和 provider 包。 flutter_bloc 附带一个 RepositoryProvider,我现在问
我正在使用 Angular2 开发一个应用程序。 我正在尝试在我的应用程序中使用 Reactive Forms,但我遇到了一些错误: 第一个错误是关于 NgControl 的,如下所示: No pro
最近很多用户在使用电脑的时候发现了wmi provider host进程占用内存比较大,不知道这个进程到底是干什么的,能不能禁止,怎么禁止。下面来一起看看想想的介绍吧。 wmi provide
我的问题是: 当我在设计时不知道这些表达式的数量和类型时,如何将列表中的表达式拼接成一个引用? 在底部,我包含了类型提供程序的完整代码。 (我已经剥离了这个概念来证明这个问题。)我的问题出现在这些行:
我目前正在学习使用 Flutter 进行应用程序开发,并已开始学习 Provider 包。我遇到了一些困难并收到错误: “在此...小部件之上找不到正确的提供者” 我最终移动了 Provider 小部
我是 android 的新手,我正在学习如何使用 JavaMail API 发送电子邮件的教程,我已经正确添加了必要的 Jar,但我总是遇到无法解析 GmailSender 类上的符号提供程序,我尝试
我正在我的 Angular 应用程序中进行单元测试,我正在使用 TestBed 方法, 我正在测试组件,所以每个规范文件看起来像这样 import... describe('AppComponent'
enter image description here 代码:这是我的 index.js 文件 index.js import { Provider } from "react-redux"
Microsoft ASP.NET Universal Providers 1.1昨天与System.Web.Providers 1.2一起发布.在后面的 nuget 页面上声明:Legacy pac
在我的 Next js 项目中,我使用了 Next auth,其中 import {Provider} from 'next-auth/client' , 并包裹 在 _app.js 中。 但是,与此
当我在 View 模型中使用如下界面时 class MainViewModel @ViewModelInject constructor( private val trafficImagesR
更新 - 我实际上发现它是 Flutter Issue . 我有两个 Provider,一个是 EntriesProvider,另一个是 EntryProvider。我在创建条目时使用我的 Entry
function configure($provide, $injector) { $provide.provider("testservice", function () {
这真让我抓狂。我似乎无法弄清楚这有什么问题。 代码: public interface IMinutesCounter { void startTimer(); void stopTi
我在我的项目中玩 Dagger 2,然后我陷入了这个错误编译。-> Error:(18, 21) error: ....MyManager cannot be provided without an
我有一个 Resteasy 应用程序,它使用 Spring 并包含 ContainerRequestFilter 和 ContainerResponseFilter 实现,并用 @Provider 注
我正在尝试使用 Dagger2 设置一个新项目,我以前使用过 Dagger2,但现在我正在尝试自己从头开始设置它。我正在从我参与的 Kotlin 项目中获取示例,但无法像现在在 Kotlin 中一样为
我刚开始学习 dagger2,遇到了一个奇怪的问题,在我看来像是一个错误。这是模块: @Module public class SimpleModule { @Provides Coo
我是一名优秀的程序员,十分优秀!