- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
根据这个问题的最佳答案...
Acess parameters of parent state from child state in stateChangeStart
当您将 toState 注入(inject) $stateChageStart 时,它应该继承/合并来自父状态的数据。
不幸的是,这在我的应用程序中不起作用,其中父级是抽象状态。这是我的路线
// Settings
.state('wfSettings', {
url: '/settings',
abstract: true,
template: '<ui-view/>',
data:{
customData1: "Hello",
customData2: "World!"
}
})
.state('wfSettings.siteSettings', {
url: "/site-settings",
templateUrl: "/templates/siteSettings.tpl.html",
controller: "SiteSettingsCtrl as siteSettings",
data:{
customData2: "UI-Router!"
}
})
当我在 $atateChangeStart 函数中使用 console.log(toState) 并访问子页面时,它会输出此内容。
因此您可以看到来自父级的数据不存在。
唯一奇怪的是,在上面的屏幕截图中,您可以看到 Chrome 开发工具将“V”放在数据旁边,而不是通常的“对象”(如果我不在父级上放置任何数据)状态。非常奇怪的行为。
编辑:
我已经取得了一些进展。 ui-router 0.2.11 和 0.2.18 版本之间似乎存在差异。此屏幕截图显示了两行输出。第一个是0.2.11版本计算的$stateChageStart中子路由的数据。
当我将库切换到 0.2.18 时,它会输出第二行!
编辑2:
我已追踪到此更改(在更改日志中未将其归类为重大更改)
https://github.com/angular-ui/ui-router/commit/c4fec8c7998113902af4152d716c42dada6eb465
所以,我知道是什么原因造成的,但我仍然不知道如何解决这个问题。想必我需要以某种方式沿着原型(prototype)链向上并手动合并这些值?但这有点超出了我对 javascript 原型(prototype)继承的了解。
最佳答案
这是由于 0.2.16 中的重大更改所致。这些属性仍然可以由子状态访问,但需要直接访问。
In 0.2.15 and prior, properties from the parent state’s data object were copied to the child state’s data object when the state was registered. If the parent state’s data object changed at runtime, the children didn’t relect the change.
In 0.2.16+, we switched to prototypal inheritance. Changes to the parent data object are reflected in the child.
来源:https://ui-router.github.io/guide/ng1/migrate-to-1_0#prototypal-inherited-data
但是,没有提到的是,即使前面的示例仍然有效(customData1 在子状态中可用),如果您枚举 $state.current.data.property - 例如,继承的属性将不会出现在“json” Angular 过滤器不会显示继承的属性。看看这个 plunkr 看看这两个效果:https://plnkr.co/edit/8ufkoluh1z6qmZT7VySd?p=preview
来源:产生上述结果的实验
如果您想要恢复旧的行为,您也可以实现此目的:
The ship has sailed on the decision between copying vs prototypal inheritance. Switching to deep copy would be a breaking change for many apps which expect a child state's data property to clobber a parent state's data property.
If you want non-standard (deep copy) behavior you can certainly implement it for your app:
$stateProvider.decorator('data', function(state, parentDecoratorFn){
var parentData = state.parent && state.parent.data || {};
var selfData = state.self.data || {};
return state.self.data = angular.merge({}, parentData, selfData);
});
example: http://plnkr.co/edit/Wm9p13QRkxCjRKOwVvbQ?p=preview
来源:https://github.com/angular-ui/ui-router/issues/3045#issuecomment-249991317
关于javascript - Angular UI 路由器 - 抽象状态的子级不继承 $stateChangeStart 中的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38676633/
使用 ui-router-ng2 有哪些优点和缺点?而不是新的 Angular2 路由器?过去我使用 ui-router 和 Angular 1.x 而不是使用 ngRoute,因为我需要更好地支持嵌
本文主要记录个人对小米 WR30U 路由器的解锁和刷机过程,整体步骤与 一般安装流程 类似,但是由于 WR30U 的解锁 ssh 和刷机的过程中有一些细节需要注意,因此记录一下 解锁
我有路由器 { path: 'reset-password', component: ResetPasswordComponent, } 我希望能够将其作为直接链接 (/reset-passw
所以,我试图制作一个具有 Backbone 的示例应用程序,但我无法使路由器工作,对此有什么想法吗?谢谢。这是我的路由器 var Workspace = Backbone.Router.extend(
我正在研究分布式应用程序。网络基于ZMQ(jeromq),这是我的架构: N Clients (Dealer socket) (Router) Proxy (Dealer) 1 (Dealer)
In this plunk我有一个 ui-router $state.goto这仅在第一次有效,即使我增加了 seq变量以强制重新加载。看到时间戳没有改变。这段代码有什么问题? HTML G
我有面包屑组件,测试如下。测试应覆盖75%以上。测试失败,因为 ActivatedRoute.root.children 未定义。谁知道我该如何定义它?我需要至少一个 children 作为 root
我正在使用 RC5 和 "@angular/router": "3.0.0-rc.1" 我似乎无法捕捉到旧路线(示例): /category/subcategory/subcategory/artic
我确实有一个延迟加载模块,当我转到 /lazy 时默认加载 LazyLoadedComponent。到目前为止,没问题。 此组件包含 2 个路由器 socket : 模块有以下路由: const
我试图用不同的参数路由到当前页面,但没有成功。我有一个触发的组合框: this.router.navigate(['page', selectedId]); Url 正在更改,仅此而已。 如何使用不同
我正在尝试使用 React 路由器构建 SPA。当我使用链接导航时,它工作得很好,但是刷新或写入 url 时,它给我 cannot GET/(any route except main)。我试图将 h
我无法在我的 app.js 文件中添加样式。 div 在路线内不起作用。有没有其他方法可以在路由中添加样式? : } /> } /> }> } />
根据用户角色在 react-router 中有条件地呈现路由的最佳方法是什么。我有一个案例,并非所有角色都有权查看某些路线。而且我还需要处理子路线。因此,如果主要路线之一类似于/posts,我只希望
我想使用 Flash 的 RTMFP 对等协议(protocol),但我想知道它是否值得为主流受众开发?据我了解,它使用 UDP,除非用户的防火墙/路由器配置正确,否则它变得毫无用处。 这个问题有解决
我有一 strip 有 waitOn 的路线返回 Meteor.subscribe 的钩子(Hook).每次触发路线时,我都会从我的 loadingTemplate 中看到微调器在看到实际数据之前简要
所以我最近开始尝试使用 createMemoryHistory,因为我正在构建一个将在 iframe 中呈现的应用程序。幸运的是,单击 UI 按钮,我可以在不修改 url 的情况下四处导航。但是,当我
我在我的 React redux 应用程序中使用 connected-react-router。我需要服务器端渲染和客户端渲染(我通过 limenius react bundle 在 symfony
我是一名 ios 开发人员,并试图找出 viper 架构中的路由器和 coordinator 之间的区别。 我真的找不到明确的答案是协调器只是被认为是一种模式,所以路由器毕竟只是某种协调器还是它们有不
我想要这样的东西: if ($state.get("^")) $state.go("^"); else $location.path('/'); 但它显然不起作用(即使没有父状态,它也总是与 $sta
当我从 react-router-dom 使用 BrowserRouter 时,我的路由正在工作。但是为了使用自定义历史记录,我用来自 react-router 的 Router 替换了 Browse
我是一名优秀的程序员,十分优秀!