我在加载夹具数据时遇到了一些问题,我在管理员后端手动添加了数据,然后使用'symfony doctrine:data-dump'
简单地导出数据的schema.yml http://pastebin.com/5LTzNtU1
fixtures.yml(片段) http://pastebin.com/CNWyhrgc
现在我运行symfony doctrine:build --all
时一切正常,但是当我尝试加载数据时,我得到:
Unknown record property / related component "user" on "sfGuardUserProfile"
这真的很奇怪,因为我已经保存了用户并且他们已经很好地进入了两个表,只是在加载我从数据库导出的灯具时没有。
有没有人有任何想法可能是什么问题?
由于
答案 0 :(得分:1)
试试这个。使用
创建userss.ymlsfGuardUser:
sfGuardUser_1:
email_address: test@example.com
username: test_user
algorithm: sha1
salt: 6fdcd99a2c73d6270f1ed8dbbf7ccd3e
password: fed98ad16c318197d16a2d7375f81e1afbce0792
is_active: true
is_super_admin: true
last_login: '2011-05-03 09:37:08'
first_name: ''
last_name: ''
created_at: '2011-04-11 11:29:02'
updated_at: '2011-05-03 09:37:08'
和profile.yml with
sfGuardUserProfile:
sfGuardUserProfile_1:
User: sfGuardUser_1
email_new: test@example.com
firstname: Test
lastname: User
validate_at: null
validate: null
created_at: '2011-04-19 15:46:16'
updated_at: '2011-04-19 15:49:14'
也许对你有所帮助。