把ActivatedRoute放在哪里?报关或进口,提供者,...?

时间:2019-01-10 04:32:42

标签: angular

未捕获的错误:模块'AppModule'声明了意外的值'ActivatedRoute'。请添加@ Pipe / @ Directive / @ Component批注。 这是我收到的错误

2 个答案:

答案 0 :(得分:0)

无需在任何模块中添加MobileElement listGroup = list.findElement(MobileBy.AndroidUIAutomator("new UiScrollable(new UiSelector()).scrollIntoView("+"new UiSelector().text(\"SampleText\")).click(); assertNotNull(listGroup.getLocation();

相反,ActivatedRoute只是路由器配置对象的(可选)属性,它接受服务,该服务间接返回布尔值以决定是否应显示此路由。例如-

ActivatedRoute

答案 1 :(得分:0)

如果您在装饰器函数之前未键入@,则会出现此错误消息

确保在装饰器之前添加了字符@

@Component({ selector: '...', }) -> Correct

Component({ selector: '...', }) -> ERROR MESAGE: 'add a @Pipe/@Directive/@component'