- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我正在尝试使用 ActivatedRoute 在 angular2 中导航时读取传递的参数,但是当我尝试 this.route.params
时,我得到了 this.route
为未定义。这是我的描述组件代码
import {Component, OnInit} from "angular2/core";
import {ActivatedRoute} from "angular2/router";
import {LocalStorageService} from "app/common/services/data/localStorageService";
@Component({
selector: "description",
template: `
{{ data.name }}
`,
providers: [LocalStorageService]
})
export class Description implements OnInit {
data: Object;
constructor(private service: LocalStorageService, private route: ActivatedRoute) {}
ngOnInit() {
this.route.params.forEach((params: Params) => {
this.data = this.service.getInformation(params["name"]);
});
}
}
我已经使用 RouteConfig
声明了路由
@RouteConfig([{
path: "",
component: Dashboard,
name: "Dashboard"
}, {
path: "/:name",
component: Description,
name: "Description"
}])
我正在使用下面的代码导航
onCardClick(item) {
this.router.navigate(["Description", {
name: item.name
}]);
}
我已经尝试在提供程序中添加 ActivatedRoute 但这似乎没有帮助。在代码执行时我得到这个错误
EXCEPTION: Error: Uncaught (in promise): EXCEPTION: Error in :0:0
ORIGINAL EXCEPTION: TypeError: Cannot read property 'params' of undefined
ORIGINAL STACKTRACE:
TypeError: Cannot read property 'params' of undefined
at new Description
(http://localhost:3000/app/pages/description/components/Description.js:27:43)
at AppView._View_Description_Host0.createInternal (Description_Host.template.js:15:32)
at AppView.create (http://localhost:3000/lib/angular2.dev.js:23468:23)
at ComponentFactory.create (http://localhost:3000/lib/angular2.dev.js:7673:34)
at ViewContainerRef_.createComponent (http://localhost:3000/lib/angular2.dev.js:5763:43)
at http://localhost:3000/lib/angular2.dev.js:4147:25
at ZoneDelegate.invoke (http://localhost:3000/lib/angular2-polyfills.js:349:29)
at Object.onInvoke (http://localhost:3000/lib/angular2.dev.js:2189:31)
at ZoneDelegate.invoke (http://localhost:3000/lib/angular2-polyfills.js:348:35)
at Zone.run (http://localhost:3000/lib/angular2-polyfills.js:242:44)
ERROR CONTEXT:
[object Object]
最佳答案
你似乎是angular2的旧版本。以下在 Angular 2.1.0 的上下文中工作。
ngOnInit() {
let name = this.route.snapshot.params["name"];
}
关于javascript - ActivatedRoute 在 angular2 中设置为未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40451319/
我正在尝试使用 ActivatedRoute 从父组件获取子路由数据('layout') .我已经尝试了以下示例,并且能够获得我正在寻找的数据,但只能获得一次。在子路由更改期间,我没有看到更新的“布局
我不确定这是否是实现它的最佳方式。如果您有其他意见,请分享。 我必须实现一个多收件箱系统,用户可以将多封电子邮件分组到不同的收件箱中。 例如:http://localhost/inbox/person
我不确定这是否是实现它的最佳方式。如果您有其他意见,请分享。 我必须实现一个多收件箱系统,用户可以将多封电子邮件分组到不同的收件箱中。 例如:http://localhost/inbox/person
我是 Angular 的新手。我试图提高我的代码覆盖率,但我似乎无法通过 this.route.snapshot.paramMap 取回“用户名”的值。这是我的课。当我运行测试时,我收到的消息是 A
我试图在屏幕上显示激活路由参数的值但失败了 在我的第一个组件中 {{i+1}} {{cate.category}} onviewChecklists(category
我想在另一个服务中使用 ActivatedRoute 服务。但是,在我的服务中,ActivatedRoute 服务正在监视主要的 App 组件,并且没有从可观察对象发出任何路由参数更改。如果我改为从同
服务中的 ActivatedRoute 问题 我试图在服务中使用 ActivatedRoute 并注意到它似乎没有跟踪我当前所在的路线。事实上,它似乎不会选择任何路线。我花了很长时间才弄清楚发生了什么
我正在学习 Angular,我想做测试,但我被卡住了。我有一个函数: ngOnInit(): void { this.route.paramMap .switchMap((params
我有一条路线注册了一些数据: const routes: Routes = [ {path: 'my-route', data: { title: 'MyTitle' }, component
我的代码: ngOnInit() { this.activatedRoute.params.subscribe((params: Params) => { // do stuff })
我正在使用以下代码模拟 ActivatedRoute 的参数值: providers: [ { provide: ActivatedRoute, useValue:
我想为我的组件创建测试。我有在 ng init 中解析数据和读取数据的路由器解析器。我想为此创建测试。我如何为这段代码创建测试 @Component({ selector: 'jhi-
我正在尝试使用 Angular 2.0 捕获查询字符串参数,但遇到了困难。我有一个这样的网址 http://localhost:5000/?id_token=eyJ0eXAiO .... 而且我希望能
我正在使用 Angular2 Material Toolbar我想将当前页面标题传递给它。 我的 app.component 有一个头部组件和当前页面组件: @Component({ select
我想得到来自这个的 url: this.router.navigate(./somepath, { relativeTo: this.route }) this.route 是 ActivatedRo
我正在使用最新的 Angular 5,并且遇到以下异常 ERROR Error: StaticInjectorError(AppModule)[AppComponent -> ActivatedRou
我正在尝试使用 Karma/Jasmine 中的 ActivatedRoute 类测试 Angular 组件,但我遇到了一个非常烦人的错误,我无法修复。 错误:无法解析 ActivatedRoute
我正在尝试使用 observables 从我激活的路由中获取参数 :id。当我在控制台上打印 params 时,我得到了 :id 的正确值。但是this.id不是这样的。我得到了 NaN 的值。你能告
问题是当我在两个相似的 URL 之间导航时,我的组件没有重绘。例如,当用户查看 http://localhost:8088/#/app/route/study/6/detail 时然后导航到 http
在我的组件的 ngOnInit 方法中,以下行产生错误。 this.products$ = this.route.paramMap.switchMap((params: ParamMap) =>
我是一名优秀的程序员,十分优秀!