nVelocity 是否支持未解析的内容

发布于 2024-11-14 20:18:27 字数 372 浏览 4 评论 0原文

阅读 Velocity 1.7 的 VTL 参考时,文档的底部引用了未解析的内容。

未解析的内容在运行时呈现,但不会被解析或解释。

示例:

#[[

这具有无效的语法,通常需要“穷人的转义”,例如:

#定义() ${废话

]]#

我只是想知道 nVelocity 是否支持这一点,但没有记录。

When reading the VTL reference for Velocity 1.7 at the bottom of the doc there was a reference to Unparsed content.

Unparsed content is rendered at runtime, but is not parsed or interpreted.

Example:

#[[

This has invalid syntax that would normally need "poor man's escaping" like:

#define()
${blah

]]#

I'm simply wondering if this is supported in nVelocity but not documented.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

陈独秀 2024-11-21 20:18:27

它没有实施。这意味着您可以这样做:-)

创建问题,然后分叉存储库并实现它,然后向团队发送拉取请求。

It's not implemented. Which means that you get to do it :-)

Create an issue, then fork the repository and implement it, then send the team a pull request.

一梦浮鱼 2024-11-21 20:18:27

是支持的。但我想不是多行声明。

例如,支持以下内容:

#[[ #define() ${blah ]]#

这不是:

#[[ 
    #define() ${blah 
]]#

It is supported. But I guess not the multi-line statement.

For example, this below is supported:

#[[ #define() ${blah ]]#

This is not:

#[[ 
    #define() ${blah 
]]#
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文