使用Symfony2进行Jobeet教程的困难

时间:2014-02-17 13:37:54

标签: php symfony doctrine-orm

我是symfony2的新手,我试着按照jobeet的教程。但是我被困在“ 告诉Doctrine关于我们的对象的部分,我们将创建”元数据“文件 ”。在教程中有代码:

    # src/Ens/JobeetBundle/Resources/config/doctrine/Category.orm.yml
    Ens\JobeetBundle\Entity\Category:
      type: entity
      table: category
      id:
        id:
          type: integer
          generator: { strategy: AUTO }
      fields:
        name:
          type: string
          length: 255
          unique: true
      oneToMany:
        jobs:
          targetEntity: Job
          mappedBy: category
        category_affiliates:
          targetEntity: CategoryAffiliate
          mappedBy: category

但在我的项目中,我该如何处理它,在哪里保存?有什么延伸? 谁能帮我这个。这是教程。Symfony2 jobeet tutorial

由于

2 个答案:

答案 0 :(得分:2)

另外,您可能想查看Symfony 2.3的Jobeet教程的版本,更容易使用更新的Symfony版本,因为您正在查看的版本是为Symfony 2.0编写的。

Symbony 2.3 version of the Jobeet tutorial

答案 1 :(得分:1)

您显示的代码的第一行是注释,表示该文件的所有内容:

# src/Ens/JobeetBundle/Resources/config/doctrine/Category.orm.yml

应该调用该文件:Category.orm.yml,并将其保存在src/Ens/JobeetBundle/Resources/config/doctrine/文件夹中。