<legend id='tigMa'><style id='tigMa'><dir id='tigMa'><q id='tigMa'></q></dir></style></legend>

    1. <small id='tigMa'></small><noframes id='tigMa'>

    2. <tfoot id='tigMa'></tfoot>

        <bdo id='tigMa'></bdo><ul id='tigMa'></ul>

      <i id='tigMa'><tr id='tigMa'><dt id='tigMa'><q id='tigMa'><span id='tigMa'><b id='tigMa'><form id='tigMa'><ins id='tigMa'></ins><ul id='tigMa'></ul><sub id='tigMa'></sub></form><legend id='tigMa'></legend><bdo id='tigMa'><pre id='tigMa'><center id='tigMa'></center></pre></bdo></b><th id='tigMa'></th></span></q></dt></tr></i><div id='tigMa'><tfoot id='tigMa'></tfoot><dl id='tigMa'><fieldset id='tigMa'></fieldset></dl></div>

      告诉学说一个字段可以为空

      Tell doctrine that a field can be null(告诉学说一个字段可以为空)

              <tfoot id='0bIA8'></tfoot>

                <bdo id='0bIA8'></bdo><ul id='0bIA8'></ul>

                <small id='0bIA8'></small><noframes id='0bIA8'>

                  <tbody id='0bIA8'></tbody>
                <legend id='0bIA8'><style id='0bIA8'><dir id='0bIA8'><q id='0bIA8'></q></dir></style></legend>
                <i id='0bIA8'><tr id='0bIA8'><dt id='0bIA8'><q id='0bIA8'><span id='0bIA8'><b id='0bIA8'><form id='0bIA8'><ins id='0bIA8'></ins><ul id='0bIA8'></ul><sub id='0bIA8'></sub></form><legend id='0bIA8'></legend><bdo id='0bIA8'><pre id='0bIA8'><center id='0bIA8'></center></pre></bdo></b><th id='0bIA8'></th></span></q></dt></tr></i><div id='0bIA8'><tfoot id='0bIA8'></tfoot><dl id='0bIA8'><fieldset id='0bIA8'></fieldset></dl></div>

              • 本文介绍了告诉学说一个字段可以为空的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                我必须在学说实体的注释中输入什么.

                What do I have to enter in the annotation of a doctrine entity.

                其实是这样的……

                /**
                 * @ORMColumn(type="string", length=255)
                 *
                 * @AssertLength(
                 *     min=3,
                 *     max=255,
                 *     minMessage="The name is too short.",
                 *     maxMessage="The name is too long.",
                 *     groups={"Registration", "Profile"}
                 * )
                 */
                protected $name;
                

                我必须告诉教义诸如 canBeNull=true 之类的东西.否则我总是收到此错误 SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'name' cannot be null

                I have to tell doctrine something like canBeNull=true. Otherwhise I always get this error SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'name' cannot be null

                但是代码是什么?

                推荐答案

                在 COLUMN 属性中定义属性 nullabletrue.

                Define the attribute nullable in the COLUMN property with true.

                例子:

                /**
                 * @ORMColumn(type="string", length=255, nullable=true)
                 *
                 * @AssertLength(
                 *     min=3,
                 *     max=255,
                 *     minMessage="The name is too short.",
                 *     maxMessage="The name is too long.",
                 *     groups={"Registration", "Profile"}
                 * )
                 */
                protected $name;
                

                这篇关于告诉学说一个字段可以为空的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                When should use doctrine ORM and when zend-db-table?(什么时候应该使用学说 ORM,什么时候应该使用 zend-db-table?)
                Doctrine - self-referencing entity - disable fetching of children(Doctrine - 自引用实体 - 禁用获取子项)
                Doctrine 2, query inside entities(原则 2,实体内部查询)
                Complex WHERE clauses using the PHP Doctrine ORM(使用 PHP Doctrine ORM 的复杂 WHERE 子句)
                Doctrine - OneToMany relation, all result row doesn#39;t fetch in object(Doctrine - OneToMany 关系,所有结果行不获取对象)
                Doctrine and unrefreshed relationships(教义和未更新的关系)

                <tfoot id='qpUry'></tfoot>
                    <i id='qpUry'><tr id='qpUry'><dt id='qpUry'><q id='qpUry'><span id='qpUry'><b id='qpUry'><form id='qpUry'><ins id='qpUry'></ins><ul id='qpUry'></ul><sub id='qpUry'></sub></form><legend id='qpUry'></legend><bdo id='qpUry'><pre id='qpUry'><center id='qpUry'></center></pre></bdo></b><th id='qpUry'></th></span></q></dt></tr></i><div id='qpUry'><tfoot id='qpUry'></tfoot><dl id='qpUry'><fieldset id='qpUry'></fieldset></dl></div>

                  • <legend id='qpUry'><style id='qpUry'><dir id='qpUry'><q id='qpUry'></q></dir></style></legend>

                          <tbody id='qpUry'></tbody>

                          <bdo id='qpUry'></bdo><ul id='qpUry'></ul>

                          <small id='qpUry'></small><noframes id='qpUry'>