在基于 Knockoutjs 和 Sammy.js 的 Web 应用程序中,我有三个以父子方式相互依赖的可观察对象(第二个是第一个的孩子,第三个是第二个的孩子)。我的 HTML 包含三个部分,一次只能看到一个部分。每个部分都依赖于使用可见绑定的上述可观察对象之一。
我的 URL 方案的布局类似于 /#id-of-parent/id-of-child/id-of-grandchild(在 Sammy.js 中)。
如果我访问一个完整的 URL(一个具有所有三个 id 的 URL),我会遇到 observables 的麻烦。在 Sammy 规则函数中,我首先加载和存储父项,然后是子项,最后是孙子项(这实际上是用户想要查看的数据)。问题是父母和孩子的绑定也被触发了。
有没有办法避免触发绑定,或者有没有更好的方法来组织这样的应用程序?
这是我的 Sammy 路线:
Sammy(function() {
this.get('#study/:id', function() {
self.studylist(null);
self.currentStudy(Study.loadById(this.params.id));
});
this.get('#study/:id/variableGroups', function() {
self.variableGroupList(self.currentStudy().variableGroups());
self.currentVariable(null);
});
this.get('#study/:id/variable-group/:variableGroup/variables', function() {
var groupId = this.params.variableGroup;
$.ajax(apiUrl + "/variable-group/" + groupId, {
type: "GET",
async: false,
cache: false,
context: this,
success: function(data) {
if (!self.currentStudy()) {
self.currentStudy(Study.loadById(this.params.id));
}
self.currentVariableGroup(new VariableGroup(data.variablegroup));
self.variableList(self.currentVariableGroup().variables);
}
});
});
this.get('#study/:id/:variableGroupId/:variableId', function() {
var variableId = this.params.variableId;
$.ajax(apiUrl + "/variable/" + variableId, {
type: "GET",
async: false,
cache: false,
context: this,
success: function(data) {
if (!self.currentStudy()) {
self.currentStudy(Study.loadById(this.params.id));
}
if (!self.currentVariableGroup()) {
self.currentVariableGroup(VariableGroup.loadById(this.params.variableGroupId));
}
self.currentVariable(new Variable(data.variable));
}
});
});
this.get("", function() {
self.currentStudy(null);
self.currentVariableGroup(null);
self.currentVariable(null);
$.get(apiUrl + "/study/all", function(data) {
var mappedStudies = $.map(data.studies, function(item, index) {
return new Study(item);
});
self.studylist(mappedStudies);
});
});
this.get('', function() { this.app.runRoute('get', "")});
}).run();