简单的用户管理,Symfony 4原则错误

时间:2018-12-18 09:06:12

标签: php symfony symfony4

我想在我的网站上创建一个简单的用户管理。我已经按照Maker-Bundle的教程进行了操作,但是如果运行命令doctrine:schema:update --force,则会出现错误:

An exception occurred while executing 'CREATE TABLE user (id INT
AUTO_INCREMENT NOT NULL, email VARCHAR(180) NOT NULL, roles JSON NOT
NULL, password VARCHAR(255) NOT NULL, UNIQUE INDEX
UNIQ_8D93D649E7927C74 (email), PRIMARY KEY(id)) DEFAULT CHARACTER SET
utf8mb4 COLLATE utf8mb4_unicode_ci ENGINE = InnoDB':



SQLSTATE[42000]: Syntax error or access violation: 1064 You have an   
error in your SQL syntax; check the manual that corresponds to your   
MariaDB server version for the right syntax to use near 'JSON NOT   
NULL, password VARCHAR(255) NOT NULL, UNIQUE INDEX   
UNIQ_8D93D649E7927C7' at line 1

这是我的用户实体

/**
 * @ORM\Entity(repositoryClass="App\Repository\UserRepository")
 */
class User implements UserInterface
{
    /**
     * @ORM\Id()
     * @ORM\GeneratedValue()
     * @ORM\Column(type="integer")
     */
    private $id;

    /**
     * @ORM\Column(type="string", length=180, unique=true)
     */
    private $email;

    /**
     * @ORM\Column(type="json")
     */
    private $roles = [];

    /**
     * @var string The hashed password
     * @ORM\Column(type="string")
     */
    private $password;

    public function getId(): ?int
    {
        return $this->id;
    }

    public function getEmail(): ?string
    {
        return $this->email;
    }

    public function setEmail(string $email): self
    {
        $this->email = $email;

        return $this;
    }

    /**
     * A visual identifier that represents this user.
     *
     * @see UserInterface
     */
    public function getUsername(): string
    {
        return (string) $this->email;
    }

    /**
     * @see UserInterface
     */
    public function getRoles(): array
    {
        $roles = $this->roles;
        // guarantee every user at least has ROLE_USER
        $roles[] = 'ROLE_USER';

        return array_unique($roles);
    }

    public function setRoles(array $roles): self
    {
        $this->roles = $roles;

        return $this;
    }

    /**
     * @see UserInterface
     */
    public function getPassword(): string
    {
        return (string) $this->password;
    }

    public function setPassword(string $password): self
    {
        $this->password = $password;

        return $this;
    }

    /**
     * @see UserInterface
     */
    public function getSalt()
    {
        // not needed when using the "bcrypt" algorithm in security.yaml
    }

    /**
     * @see UserInterface
     */
    public function eraseCredentials()
    {
        // If you store any temporary, sensitive data on the user, clear it here
        // $this->plainPassword = null;
    }
}

我已经尝试了多个教程,但是每次都会发生此错误,这似乎与“角色”字段的数据类型有关。就像在其他一些教程中一样,我也尝试过json_arrayarray,但是还是同样的错误。 我在Windows10上将XAMPP服务器与MySql数据库一起使用。

2 个答案:

答案 0 :(得分:1)

您正在运行哪个版本的MySQL? JSON数据类型是MySQL 5.7.8中引入的

默认情况下,XAMPP随MariaDB(最新版本10.1.37)一起提供,该版本不支持JSON数据类型(它将从10.2.6版开始)

您可以卸载MariaDB并从https://dev.mysql.com/downloads/mysql/安装MySQL 或来自https://downloads.mariadb.org/

的更新版本的MariaDB

答案 1 :(得分:0)

您可能要检查您的mysql版本,并确保它与 config / packages / doctrine.yaml

中指定的版本相同。

Json类型与MySql 5.6及更低版本不兼容,并且symfony默认配置为5.7。

如果您使用5.6或更低版本运行,请更新config / packages / doctrine.yaml,symfony应该负责其余的工作。