symfony/propel:有关后端生成的 i18nTable 和模块的问题

发布于 2024-09-28 00:44:46 字数 695 浏览 1 评论 0原文

在 Jobeet 中,架构有以下部分:

jobeet_category:
  _attributes:  { isI18N: true, i18nTable: jobeet_category_i18n }
  id:           ~

jobeet_category_i18n:
  id:           { type: integer, required: true, primaryKey: true, foreignTable: jobeet_category, foreignReference: id }
  culture:      { isCulture: true, type: varchar, size: 7, required: true, primaryKey: true }
  name:         { type: varchar(255), required: true }
  slug:         { type: varchar(255), required: true }

我已经在后端创建了相应的模块,但是当我尝试创建新的“jobeet_category_i18n”时,我错过了允许选择“jobeet_category”对象的选择。

无论如何,我尝试创建它,但正如我预期的那样,显示了一条有关外键的错误消息。

这个架构可以吗?为什么不显示选择“jobeet_category”对象的选择?

哈维

in Jobeet there is this part below of the schema:

jobeet_category:
  _attributes:  { isI18N: true, i18nTable: jobeet_category_i18n }
  id:           ~

jobeet_category_i18n:
  id:           { type: integer, required: true, primaryKey: true, foreignTable: jobeet_category, foreignReference: id }
  culture:      { isCulture: true, type: varchar, size: 7, required: true, primaryKey: true }
  name:         { type: varchar(255), required: true }
  slug:         { type: varchar(255), required: true }

I have created the corresponding modules in the backend, but when i try to create a new "jobeet_category_i18n" i miss the select that would permit choose a "jobeet_category" object.

Anyway i try to create it, but as i expected an error message that speaks about the foreign key is showed.

Is that schema ok? why is not showed the select to choose a "jobeet_category" object?

Javi

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

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