模块化扩展
作为我正在开发的应用程序的要求,我遇到了术语“模块化扩展”。有人知道模块化扩展是什么吗?
I came accross the term Modular Extension as a requirement of an application of I am developing. Any body know what a Modular Extension is all about?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一般来说,如果某个东西是模块化的,则意味着它独立于应用程序的其余部分,以便您可以根据需要打开或关闭它,或者完全删除它,而不会影响其他事情。
如果某个东西是扩展,则意味着它不被视为应用程序的核心部分,而是可以自行开发的独立功能。通常,编写扩展的能力意味着相对周密的设计和复杂的 API,允许外部客户端获取核心应用程序的相关内部结构。
否则,您的问题有点太笼统,无法在没有更多信息的情况下给出准确的答案。
In general, if something is modular it means it's independent to the rest of your application, so that you can switch it on or off as needed, or remove it entirely, without affecting other things.
If something is an extension it means it's not considered a core part of your application, but rather separate functionality that can be developed on its own. Usually, the ability to write extensions implies a relatively well thought-out design and a sophisticated API that allows outside clients to get at the relevant internals of your core application.
Otherwise, though, your question is a little too generic to give a precise answer without more information.