Symfony 自动生成的模型类功能位置

发布于 2024-11-19 13:01:31 字数 319 浏览 1 评论 0原文

我正在开发一个 symfony 项目,并生成了一组名为 Base.php.php< name>Peer.phpBasePeer.php

我完成了著名的 jobeet 教程,但我仍然对在模型的这些文件中定位函数存有疑问。所以我的问题是:

我必须将什么样的函数放入哪个文件中?

或以其他方式表达

我如何知道在这些文件中找到函数的位置?

非常感谢

i'm working on a symfony project and i generated a set of model classes called Base<name>.php, <name>.php, <name>Peer.php and Base<name>Peer.php

I did the famous jobeet tutorial and i still have doubts about locating functions in these files of the model. So my question is:

What kind of functions i have to put in which file?

or expressed other way

How i know where to locate a function in these files?

thank you very much

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

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

发布评论

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

评论(1

长不大的小祸害 2024-11-26 13:01:31

您永远不应该编辑以 Base 为前缀的文件,如果您更改架构中的某些内容并重新生成这些文件,它们可能会被覆盖。

您自己编写的自定义方法应该位于 Peer 类中。

为了轻松找到方法,我使用了 PDT 等优秀的 IDE,它可以解析文件并允许搜索方法。

You should never edit the files prefixed with Base, they can be overwritten if you change something in your schema and regenerate these files.

The custom methods you are writing yourself should be in the Peer class.

To easily locate a method, I use a good IDE like PDT that parses the files and allows searching methods.

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