gpt4 book ai didi

perl - 如何在 Text::Template 中使用带有 '.' 的变量

转载 作者:行者123 更新时间:2023-12-02 03:56:52 28 4
gpt4 key购买 nike

如何使用带有“.”的模板变量使用 Text::Template 时,

afile.xml.template ..

<m:properties>
<d:Name>firstname</d:Name>
<d:Value>{$user.firstname}</d:Value>
</m:properties>

模板代码 -

my $text = $payload_template->fill_in(HASH => \%properties);

%properties 散列的属性“user.firstname”为“john”

这给出输出为 -

<m:properties>
<d:Name>firstname</d:Name>
<d:Value>$userfirstname</d:Value>
</m:properties>

预期输出-

<m:properties>
<d:Name>firstname</d:Name>
<d:Value>john</d:Value>
</m:properties>

最佳答案

看起来代码片段将 . 视为串联操作。

尝试以下操作:

<d:Value>{${'user.firstname'}}</d:Value>

关于perl - 如何在 Text::Template 中使用带有 '.' 的变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12193243/

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