gpt4 book ai didi

flutter - 有没有办法将仅在运行时已知的参数传递给 getit 依赖注入(inject)创建的对象?

转载 作者:行者123 更新时间:2023-12-05 04:48:44 30 4
gpt4 key购买 nike

有没有办法在创建对象或从依赖注入(inject)器检索对象时将仅在运行时已知的参数传递给由 getit 依赖注入(inject)创建的对象?

class WatchVideoPage extends StatelessWidget {
Widget build(BuildContext context) {
return BlocProvider(
create: () => locator<WatchVideoPageBloc>(), // I want the bloc to know of the videoId.
child: new RandomWidget()
);
}

final VideoId videoId;
}

'locator' 是代码中的依赖注入(inject)。

或者是否有其他方法让 bloc 知道 videoId 的值?

谢谢!

最佳答案

您可以只创建一个事件,使视频 ID 为整个 Bloc 所知:

create: () => locator<WatchVideoPageBloc>()..add(StartStreaming(videoId)),

显然,这意味着您需要一个名为 StartStreaming 的事件,该事件在其构造函数中采用 VideoId

关于flutter - 有没有办法将仅在运行时已知的参数传递给 getit 依赖注入(inject)创建的对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67957552/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com