如何使用 Asp.Net MVC 管理多租户 Web 门户 CSS

发布于 2024-09-11 12:01:48 字数 148 浏览 5 评论 0原文

我正在使用 MVC 设计一个多租户 Web 门户应用程序。

租户将通过 URL 或租户 ID 进行识别。我们将有一组默认的皮肤和主题,但根据要求,每个租户都可以有自己的皮肤和主题。

为多租户 Web 门户应用程序处理/附加 css 的最佳方法是什么?

I am designing a multi tenants web portal application using MVC.

Tenants will be identified by URL or tenant id. We are going to have a default set of skins and themes but per requirement each tenant can have its own skins and themes.

What is the best way to handle/attach css for multi tenant web portal application?

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

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

发布评论

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

评论(1

¢蛋碎的人ぎ生 2024-09-18 12:01:48

他们将如何定制皮肤?如果是通过将一些变量替换为预定义的 CSS 模板,那么您可以将它们的设置保存在 CSS 配置值的数据库中,并在渲染页面时检索它们。如果他们可以从头开始编写 CSS,那么最好将 CSS 存储为文本,然后从数据库中检索。这可能会使 CSS 的测试和调试变得更加困难。

How are they going to customize the skins? If it's by substituting a few variables into a a predefined CSS template, then you can save their settings in a database of CSS config values and retrieve them when rendering the page. If they can author CSS from scratch, it might be better to store the CSS as text and then retreive that from the database. That might make testing and debugging CSS a little more difficult.

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