Angular 可以使用的模板,但没有 UI 设计的麻烦
Angular Template to work with but without the headache of UI design
我一直在寻找可以使用的模板、组件、库等,并且我一直在进行比较,但我的经验太少,无法预测前端未来可能面临的复杂性挑战,所以我现在正在寻找正确的决定,或者最接近。希望通过回答以下问题。
Objective:使用完整的 Web 应用程序及其业务逻辑,远离其他问题,例如 CSS 主题、库兼容性、JavaScript 挑战、响应能力、RTL..等等相反,应用程序的稳定性、安全性、业务(功能)...等是我主要关心的问题。
注意事项:
- Angular 是我的框架,用于 Web 应用程序的展示和导航
- 应始终牢记最新版本以获得适当的支持和稳定性以及使用新功能。因此,对于这一点来说,破坏性的变化已经够头疼了。
- 到目前为止,我想到的库是 PrimeNG、BootStrap(用于网格系统)、Nebular 和 Angular-Material.
- RTL 和布局的易用性非常重要。
问题:
- 什么是 use/learn 开始工作但需要注意的要求和细节最少?例如,Nebular 有 4 个开箱即用的主题,如果使用 ngx-admin,则不需要 CSS/SCSS 工作,所以这让我真正专注于功能而不是外观。
- 什么是最好的和更灵活的网格系统用于响应? BootStrap 网格系统已经存在太久了,它真的很容易使用,但如果我选择 angular material 那么这将是额外的工作,而不是仅仅坚持使用 Angular-Material我还一无所知的响应支持。
- ngx-admin 之类的应用程序很容易做到,但与 angular material 相比,nebular 有点受限并且支持较少,可能 angular material 是 easy/straightforward 无需关心即可使用css 这样的 ?
- 在 nebular 中, 用
nb-layout
舍入 html 确实可以处理主题和 rtl。在 PrimeNG 中,Angular-Material 或其他替代方案的任何替代方案?
What is to use/learn to start working with but has the least requirement and details to pay attention to ? Nebular for example got 4 themes out of the box and no need to do CSS/SCSS work if ngx-admin used so this lets me really focus on the functionality rather than the look.
无论什么都有现成的模板。这将是您立即开始的最快选择。 ngx-admin based on nebular is great for you in this manner. Also ng-alain 是另一种选择。选择一个强大的支持模板,最好是开源的,恕我直言,这将满足您的要求。
What is the best and more flexible to use as grid system for responsiveness ? BootStrap grid system been there for too long and it's really easy to use but if I go for angular material then that would be additional work rather than just sticking with Angular-Material responsiveness support which I don't know anything about yet.
这里没有正确或错误的答案。使用适合您的任何东西。但请坚持使用一种解决方案,不要感到困惑。
ngx-admin like apps would be straightforward to do but nebular is kinda restrictive compared to angular material and less supported, could be angular material be that easy/straightforward to use without caring about css as such ?
您正在将模板展示与设计的框架植入进行比较。这样做既不可能也不公平。选择像 Material Dashboard 这样的模板,并将其与其他模板进行比较,看看哪个更适合您。有许多基于原始 angular material
的模板
In nebular, rounding your html with nb-layout really takes care of theming & rtl. Any alternative to that in PrimeNG, Angular-Material or others ?
是的,Angular Material 支持布局,但您必须自己创建统一的主题、方向等解决方案。对此有不同的方法。但是,它开箱即用,例如 NG-ZORRO & Clarity。无论您使用什么,您都必须搜索并询问可用功能。
这里没有比这更好的了,但是您必须在您的需求与您将要努力获得和实施的内容之间取得平衡。
我一直在寻找可以使用的模板、组件、库等,并且我一直在进行比较,但我的经验太少,无法预测前端未来可能面临的复杂性挑战,所以我现在正在寻找正确的决定,或者最接近。希望通过回答以下问题。
Objective:使用完整的 Web 应用程序及其业务逻辑,远离其他问题,例如 CSS 主题、库兼容性、JavaScript 挑战、响应能力、RTL..等等相反,应用程序的稳定性、安全性、业务(功能)...等是我主要关心的问题。
注意事项:
- Angular 是我的框架,用于 Web 应用程序的展示和导航
- 应始终牢记最新版本以获得适当的支持和稳定性以及使用新功能。因此,对于这一点来说,破坏性的变化已经够头疼了。
- 到目前为止,我想到的库是 PrimeNG、BootStrap(用于网格系统)、Nebular 和 Angular-Material.
- RTL 和布局的易用性非常重要。
问题:
- 什么是 use/learn 开始工作但需要注意的要求和细节最少?例如,Nebular 有 4 个开箱即用的主题,如果使用 ngx-admin,则不需要 CSS/SCSS 工作,所以这让我真正专注于功能而不是外观。
- 什么是最好的和更灵活的网格系统用于响应? BootStrap 网格系统已经存在太久了,它真的很容易使用,但如果我选择 angular material 那么这将是额外的工作,而不是仅仅坚持使用 Angular-Material我还一无所知的响应支持。
- ngx-admin 之类的应用程序很容易做到,但与 angular material 相比,nebular 有点受限并且支持较少,可能 angular material 是 easy/straightforward 无需关心即可使用css 这样的 ?
- 在 nebular 中, 用
nb-layout
舍入 html 确实可以处理主题和 rtl。在 PrimeNG 中,Angular-Material 或其他替代方案的任何替代方案?
What is to use/learn to start working with but has the least requirement and details to pay attention to ? Nebular for example got 4 themes out of the box and no need to do CSS/SCSS work if ngx-admin used so this lets me really focus on the functionality rather than the look.
无论什么都有现成的模板。这将是您立即开始的最快选择。 ngx-admin based on nebular is great for you in this manner. Also ng-alain 是另一种选择。选择一个强大的支持模板,最好是开源的,恕我直言,这将满足您的要求。
What is the best and more flexible to use as grid system for responsiveness ? BootStrap grid system been there for too long and it's really easy to use but if I go for angular material then that would be additional work rather than just sticking with Angular-Material responsiveness support which I don't know anything about yet.
这里没有正确或错误的答案。使用适合您的任何东西。但请坚持使用一种解决方案,不要感到困惑。
ngx-admin like apps would be straightforward to do but nebular is kinda restrictive compared to angular material and less supported, could be angular material be that easy/straightforward to use without caring about css as such ?
您正在将模板展示与设计的框架植入进行比较。这样做既不可能也不公平。选择像 Material Dashboard 这样的模板,并将其与其他模板进行比较,看看哪个更适合您。有许多基于原始 angular material
的模板In nebular, rounding your html with nb-layout really takes care of theming & rtl. Any alternative to that in PrimeNG, Angular-Material or others ?
是的,Angular Material 支持布局,但您必须自己创建统一的主题、方向等解决方案。对此有不同的方法。但是,它开箱即用,例如 NG-ZORRO & Clarity。无论您使用什么,您都必须搜索并询问可用功能。
这里没有比这更好的了,但是您必须在您的需求与您将要努力获得和实施的内容之间取得平衡。