T4MVC 支持区域中的静态文件吗?

发布于 2024-12-11 09:18:31 字数 354 浏览 0 评论 0原文

我开始大量使用 T4MVC 的“链接”功能(例如,@Links.Content.Site_css)。有谁知道是否有办法为存储在区域内文件夹中的文件生成方法?我尝试对设置文件进行以下修改,但没有成功。

// Folders containing static files for which links are generated (e.g. Links.Scripts.Map_js)
readonly string[] StaticFilesFolders = new string[] {
"Scripts",
"Content",
"Areas/Admin/Content"
};

预先非常感谢。

DS

I'm starting to make heavy use of T4MVCs "links" feature (eg, @Links.Content.Site_css). Does anyone know if there's a way to generate methods for files that are stored in folders within areas? I've tried making the following modification to the settings file, but haven't had any luck.

// Folders containing static files for which links are generated (e.g. Links.Scripts.Map_js)
readonly string[] StaticFilesFolders = new string[] {
"Scripts",
"Content",
"Areas/Admin/Content"
};

Thanks very much in advance.

DS

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

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

发布评论

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

评论(2

或十年 2024-12-18 09:18:31

而不是

"Areas/Admin/Content"

尝试使用:

@"Areas\Admin\Content"

我认为这可以做到。

Instead of

"Areas/Admin/Content"

Try using:

@"Areas\Admin\Content"

I think this will do it.

静谧幽蓝 2024-12-18 09:18:31

我最终根本不需要更改 T4MVC.TT。将“区域”添加到 T4MVC.TT.settings.T4 中的 StaticFilesFolders 中就可以了。

// Folders containing static files for which links are generated (e.g.            Links.Scripts.Map_js)
readonly string[] StaticFilesFolders = new string[] {
"Scripts",
"Content",
"Areas"
};

感谢你的帮助大卫。 :-)

PS - 使用 T4MVC 版本 2.6.64

I didn't end up needing to alter T4MVC.TT at all. Adding "Areas" to the StaticFilesFolders in T4MVC.TT.settings.T4 did the trick.

// Folders containing static files for which links are generated (e.g.            Links.Scripts.Map_js)
readonly string[] StaticFilesFolders = new string[] {
"Scripts",
"Content",
"Areas"
};

Thanks for your help David. :-)

PS - using T4MVC Version 2.6.64

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