我有一个解析函数,该函数需要在其他解析函数中检索到的数据。我发现使用ui-router可以通过以下方式实现:
resolve: {
one: [
() => {
console.log("one");
return 1;
}
],
two: [
() => {
console.log("two");
return 2;
}
],
three: [
"one",
"two",
(
one,
two
) => {
console.log("three");
return one + two;
}
]
}
但是,我的工作场所使用的是ngRoute而不是ui-router。 ngRoute是否有一项技术可以完成以上任务?
编辑:为清楚起见,在执行上述操作时,控制台中显示“一个”和“两个”,但不显示“三个”。