我是新来Symfony2的, 我不知道我该在哪里拯救一个更新多个表格(实体)的班级。
从阅读文档和教程中,它说,我不应该在实体类内设置任何其他表格参考;我可以将其放在控制器类内,但许多人再次说,这一类应该尽可能简单,不包括商业逻辑; 不在储存库内,因为这些表格被用于查询数据,而不是用于更新或插入。
是否有标准文件夹结构可以保存与多个实体(表格)合作的另一种类型类别? 商业逻辑是否真的应该存储在控制器类别中?
我是新来Symfony2的, 我不知道我该在哪里拯救一个更新多个表格(实体)的班级。
从阅读文档和教程中,它说,我不应该在实体类内设置任何其他表格参考;我可以将其放在控制器类内,但许多人再次说,这一类应该尽可能简单,不包括商业逻辑; 不在储存库内,因为这些表格被用于查询数据,而不是用于更新或插入。
是否有标准文件夹结构可以保存与多个实体(表格)合作的另一种类型类别? 商业逻辑是否真的应该存储在控制器类别中?
在这方面,Symfony2非常灵活。
你说的对,实体只代表一个“表格”。
我建议你查看"http://symfony.com/doc/current/book/service_container.html" rel=“nofollow”>services ,因为它们是将您的代码从一个控制器移动到另一个类的好方法。您基本上会调用您的服务并使用它所提供的函数。这会将您的控制器缩略下来 。
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 ...
<?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 = ...
I found this script online that creates a thumbnail out of a image but the thumbnail image is created with poor quality how can I improve the quality of the image. And is there a better way to create ...
如何确认来自正确来源的数字。
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 ...
I wonder there is a way to post a message to a facebook business page with cURL? thanks
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? 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 ...