创建聚焦领域的应用程序:Symfony方法(第一部分)
原文英文,约1500词,阅读约需6分钟。发表于: 。Introduction This is the first post of a series that i've decided to create in order to explain how I organize my symfony applications and how I try to write code as domain-oriented as...
本文介绍了Symfony应用程序的组织,重点在数据提取和验证。首先从JSON请求中提取数据,创建数据传输对象(DTO)并定义验证规则,最后使用Symfony验证服务进行验证。分析认为,只有DTO属于领域层,其余过程应归入应用层。最终,创建了一个数据处理服务,协调数据提取、反序列化和验证任务。