English 中文(简体)
在Symfony2中,我要保存一个多实体类的文件夹是什么?
原标题:In Symfony2, what folder do I save a multi entity class in?

我是新来Symfony2的, 我不知道我该在哪里拯救一个更新多个表格(实体)的班级。

从阅读文档和教程中,它说,我不应该在实体类内设置任何其他表格参考;我可以将其放在控制器类内,但许多人再次说,这一类应该尽可能简单,不包括商业逻辑; 不在储存库内,因为这些表格被用于查询数据,而不是用于更新或插入。

是否有标准文件夹结构可以保存与多个实体(表格)合作的另一种类型类别? 商业逻辑是否真的应该存储在控制器类别中?

最佳回答

在这方面,Symfony2非常灵活。

你说的对,实体只代表一个“表格”。

我建议你查看"http://symfony.com/doc/current/book/service_container.html" rel=“nofollow”>services ,因为它们是将您的代码从一个控制器移动到另一个类的好方法。您基本上会调用您的服务并使用它所提供的函数。这会将您的控制器缩略下来 。

问题回答

暂无回答




相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签