为什么无法在 Symfony2 项目中加载这些设备的数据?

发布于 2024-12-16 14:15:38 字数 698 浏览 0 评论 0原文

我在我的包的 DataFixtures/ORM 文件夹中创建了一个固定装置类。实际的类如下所示:

use Doctrine\Common\DataFixtures\FixtureInterface,
    Company\ShoppingBundle\Entity\Category;

class CategoryFixtures implements FixtureInterface
{
    public function load($em)
    {
        $category1 = new Category()->setName("category1");
        $category2 = new Category()->setName("category2");
        $em->persist($category1);
        $em->persist($category2);
        $em->flush();
    }
}

我没有使用 AbstractFixture 基类,因为我不需要引用。我还尝试在运行doctrine:fixtures:load 控制台命令时指定装置路径。我正在关注此处的官方文档。

I've created a fixtures class inside my bundle's DataFixtures/ORM folder. The actual class looks like this:

use Doctrine\Common\DataFixtures\FixtureInterface,
    Company\ShoppingBundle\Entity\Category;

class CategoryFixtures implements FixtureInterface
{
    public function load($em)
    {
        $category1 = new Category()->setName("category1");
        $category2 = new Category()->setName("category2");
        $em->persist($category1);
        $em->persist($category2);
        $em->flush();
    }
}

I'm not using the AbstractFixture base class, since I don't need references. I've also tried specifying the fixtures path when running the doctrine:fixtures:load console command. I'm following the official docs here.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

雨轻弹 2024-12-23 14:15:38

文件命名或我的配置没有任何问题:我只是忘记放在

<?php

文件顶部:-D

Nothing wrong with the file naming, or my configuration: I simply forgot to put

<?php

at the top of my file :-D

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文