为瞬态记录添加多对多关系的学说

发布于 2024-09-09 01:31:29 字数 322 浏览 9 评论 0原文

两个模型 Site 和 Language 共享多对多关系(它们是双向的) 如何添加它们之间的关系?

理想情况下,我想这样做:(将现有语言添加到新站点)

$site = new Site();
$site->name = "Google"
$site->url = "www.google.com";

----添加语言的代码----

$site->save();

或者我应该只在调用 save() 之后添加语言,如果是这样,该怎么做?

提前致谢

two models Site and Language share a many-to-many relationship (they are bi-directional)
How do I add a relationship between them?

Ideally I want to do this : (add an existing language to a new Site)

$site = new Site();
$site->name = "Google"
$site->url = "www.google.com";

---- code to add language----

$site->save();

Or should I only add the language after calling save() and if so how is that done?

Thanks in advance

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

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

发布评论

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

评论(2

冷︶言冷语的世界 2024-09-16 01:31:29

发现问题:关联表的主键未设置为“自动增量”

此代码有效

$site = new Site();
$site->name = "Google";
$site->url = "www.google.com";
// now add languages
$langIds = array(1, 2,3);
foreach ($langIds as $id) {
    $site->SiteLanguage[]->languageId = $id;
}

// now call save --- this creates a new site along with associations
$site->save();

Found the problem : The primary key of the association table is not set to "Auto-Increment"

this code works

$site = new Site();
$site->name = "Google";
$site->url = "www.google.com";
// now add languages
$langIds = array(1, 2,3);
foreach ($langIds as $id) {
    $site->SiteLanguage[]->languageId = $id;
}

// now call save --- this creates a new site along with associations
$site->save();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文