perl – MooseX ::声明如何从属性默认方法返回ArrayRef?

前端之家收集整理的这篇文章主要介绍了perl – MooseX ::声明如何从属性默认方法返回ArrayRef?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我意识到这可能是我对perl或Moose的某些部分的基本误解,但我似乎无法从默认方法返回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.您可以使用[]构造函数从列表构造arrayref:

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

猜你在找的Perl相关文章