gpt4 book ai didi

angular - Dart Angular 组件OptionGroup:LabelFunction

转载 作者:行者123 更新时间:2023-12-03 04:04:53 25 4
gpt4 key购买 nike

我正在使用新的 Material 树,并希望将一系列自定义对象作为OptionGroup传递,这些对象包含label属性,我需要使用LabelFunction对其进行增强,但是此特定的typedef不接受任何值,我想我只是需要一个示例或一个健全性检查,并且只是希望输出一个String。
给定这个简单的类:

class pulsar {
String label = '';
String id = '';

pulsar();
}

我想创建:
final SelectionOptions pulsars = new SelectionOptions([
new OptionGroup.withLabelFunction(
[pulsar1, pulsar2, pulsar3],
(T) => labeler(T)
]);
// This is the problem, since the typedef String LabelFunction()
// Does not accept parameters.
// I will want this to work...
String labeler(pulsar p) => "${p.id} : ${p.label}";

我想,我想知道我是否错过了 LabelFunction 的要点。

最佳答案

没关系,我选择了ItemRenderer。

关于angular - Dart Angular 组件OptionGroup:LabelFunction,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44711127/

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