我应该如何在 NVelocity 模板中为不同的用户类型提供单独的布局?

发布于 2024-12-18 03:54:19 字数 366 浏览 2 评论 0原文

我正在重新设计我们在线商店的模板(使用 Castle Monorail 和 NVelocity 视图引擎),但希望向某些用户提供旧的布局。

我开始向 PropertyBag 添加一个变量,该变量确定用户应获取的版本,并将布局设置为“BaseLayout.vm”,如下所示:

#if($StoreVersion == 2)
    #parse("VersionTwo/DefaultLayout.vm")
#else
    #parse('VersionOne/DefaultLayout.vm')
#end

这对于布局来说效果很好,从技术上讲,我可以在每个模板中使用这种方法文件,但这似乎有点啰嗦。有没有更好的方法可以机械化这个?

I'm redesigning the templates for our online store (Using Castle Monorail with the NVelocity view engine) but want to provide the old layout to certain users.

I've started out adding a variable to the PropertyBag that determines the version the user should get and set the layout to 'BaseLayout.vm' which looks like this:

#if($StoreVersion == 2)
    #parse("VersionTwo/DefaultLayout.vm")
#else
    #parse('VersionOne/DefaultLayout.vm')
#end

This works OK for the layout and I can technically use this approach in every template file, but this seems a bit long winded. Is there a better way I can mechanize this?

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

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

发布评论

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

评论(2

萤火眠眠 2024-12-25 03:54:19

您可以将条件放入代码中并在控制器中设置 LayoutName 属性,而不是有条件地“转发”到其他布局的布局。

Instead of having a layout that "forwards" conditionally to other layouts, you can put the condition in code and set the LayoutName property in the controller.

┊风居住的梦幻卍 2024-12-25 03:54:19

我会创建一个控制器过滤器并覆盖要根据您的逻辑呈现的布局名称

I would crate a controller filter and override the layout name to be rendered based to your logic

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