在symfony 2.8中有一种方法可以在API应用程序实体中使用而无需存储在数据库中以使用表单和验证来验证发布数据,而无需在控制器中进行所有验证(非空白,数字数据,长度x .. 。)? 也许通过使用抽象实体?
答案 0 :(得分:0)
只是不要将注释(是否使用注释)告诉将数据存储在数据库中,例如:
通常你有:@misc{cso17,
author = {{Czech Statistical Office}},
title = {Life Tables - Methodology},
Howpublished = {\url{http://www.czso.cz/csu/czso/life-tables-methodology}},
year = {2008},
urldate = {2017-23-06}
}
简单地写出来:
/**
* @var int
* @ORM\Column(type="integer")
*/
protected $userId;