gpt4 book ai didi

ember.js - 如何使用 ember.js 访问嵌套索引路由中的父模型?

转载 作者:行者123 更新时间:2023-12-01 22:25:00 25 4
gpt4 key购买 nike

我有以下路线结构

App.Router.map(function(match) {
this.route("days", { path: "/" });
this.resource("day", { path: "/:day_id" }, function() {
this.resource("appointment", { path: "/appointment" }, function() {
this.route("edit", { path: "/edit" });
});
});
});

当我在 AppointmentIndexRoute 内时,我正在寻找一种使用日(父)模型中的元日创建新模型的方法,但因为日模型尚不知道此约会,所以我不确定如何将它们关联起来,直到创建约会/并且触发提交。

任何帮助将不胜感激

最佳答案

AppointmentIndexRoute 的模型 Hook 中,您可以使用 modelFor('day') 访问父模型。例如:

App.AppointmentIndexRoute = Ember.Route.extend({
model: function(params) {
day = this.modelFor("day");
...
}
});

另一个例子在这里:emberjs 1.0.0pre4 how do you pass a context object to a resource "...Index" route?

关于ember.js - 如何使用 ember.js 访问嵌套索引路由中的父模型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14709171/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com