为什么JavaScript文件名有时有点?

发布于 2025-01-21 16:42:00 字数 133 浏览 0 评论 0原文

我有以下问题,这是因为有点数的JavaScript文件名吗?

例如:

在带有Express的节点JS项目中,我找到了以下文件:

user.route.js

user.controller.js

I have the following question and is it because there are javascript file names with dots?

For example:

In a node js project with express, I found the following files:

user.route.js

user.controller.js

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

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

发布评论

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

评论(2

青衫负雪 2025-01-28 16:42:00

因为在阅读文件名时很清楚,您可以知道文件的责任,对象正在处理,项目的业务模型。
轻松维护,修复错误。

Because it very clearly when you read the filename, you can know the responsibility of file, object is handling, Business model of project.
Easy maintain, fix bug.

明明#如月 2025-01-28 16:42:00

这是将文件放在不同目录中的同样原因。我们为什么要这样做?我们想以可管理的方式组织文件。因此,我们将与路由相关的文件放在路由目录,Service> Service目录中的业务逻辑相关文件中。

组织文件的另一种方法是将名称本身中提到的文件的类型。文件名user.route.js说,它包含路由用户有关。文件user.controller.js说,它包含Controller用户有关的功能。

如果您对此有更多的考虑,则类似于文件名中的扩展名。文件以.js告诉我们,它是javascript文件。 .css.html等文件也是如此。同样,文件以.route.js告诉我们,它是一个具有相关JavaScript代码的文件。那么,以.controller.js结尾的文件告诉您什么?

It is the same reason why you put files in different directories. Why would we do that? We want to organize the files in a manageable manner. So, we put routing related files in routes directory, business logic related files in service directory.

Another way of organizing files is to have the type of the file mentioned in the name itself. The file name user.route.js says, it contains routes related to user. The file user.controller.js says, it contains controller functions related to user.

If you think more about it, it is similar to having extensions in file names. Files ends with .js tells us, it is a JavaScript file. Same goes for .css, .html, etc files. The same way, files ends with .route.js tells us, it is a file that has routing related JavaScript code. So, what does files that ends with .controller.js tells you?

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