JMSSerializerBundle doctrine entitie update



我对反序列化的教义实体有问题。序列化对象没有实体的所有字段,当我更新它们以便字段设置为 null 时。我认为同样的问题在这里,但没有与使用 JMSSerializer + Doctirne 相关的解决方案。

问候

您是否在

注释中添加了@Expose?像那样

use JMSSerializerBundleAnnotationExpose;
use JMSSerializerBundleAnnotationAccessor;
use JMSSerializerBundleAnnotationExclusionPolicy;
use JMSSerializerBundleAnnotationType;
class MyEntity {
    /**
     * @var integer $id
     *
     * @ORMColumn(name="id", type="integer", nullable=false)
     * @ORMId
     * @ORMGeneratedValue(strategy="IDENTITY")
     * @Expose
     * @Type("integer")
     */
    private $id;
}

相关内容

  • 没有找到相关文章

最新更新