gpt4 book ai didi

perl - MooseX::Declare 如何从属性默认方法返回 ArrayRef?

转载 作者:行者123 更新时间:2023-12-05 00:35:58 25 4
gpt4 key购买 nike

我意识到这可能是我对 perl 或 Moose 某些部分的基本误解,但我似乎无法从 default 返回 ArrayRef方法:

has '_directories' => (
is => 'ro',
isa => 'ArrayRef[Str]',
lazy => 1,
init_arg => undef,
default => method {return File::Spec->splitdir($self->relativeDirectory)});

给出:
Attribute (_directories) does not pass the type constraint because: 
Validation failed for 'ArrayRef[Str]' with value 3

我该如何解决这个问题?

最佳答案

splitdir 返回列表,而不是数组引用。您可以使用 [] 从列表中构造 arrayref构造函数:

default => method {return [ File::Spec->splitdir($self->relativeDirectory) ] },

关于perl - MooseX::Declare 如何从属性默认方法返回 ArrayRef?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8834646/

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