- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
所以我有一个非常简单的组件,它加载了一个简单的路由器。我正在使用所有基本的东西,比如 ngFor、ngSwitch、ngIf,我通过 COMMON_DIRECTIVES 注入(inject)它们
我收到这个非常模糊的错误,没有堆栈跟踪,所以我真的不知道发生了什么。我在 https://github.com/angular/angular/issues/6223 中看到了潜在相似的东西.
EXCEPTION: No provider for e! (e -> e)
STACKTRACE:
Error: DI Exception at t [as constructor] (http://localhost:5000/node_modules/angular2/bundles/angular2.min.js:6:5082) at t [as constructor] (http://localhost:5000/node_modules/angular2/bundles/angular2.min.js:1:26551) at new t (http://localhost:5000/node_modules/angular2/bundles/angular2.min.js:1:27079) at e._throwOrNull (http://localhost:5000/node_modules/angular2/bundles/angular2.min.js:9:5943) at e._getPrivateDependency (http://localhost:5000/node_modules/angular2/bundles/angular2.min.js:9:6605) at e._getByKeyHost (http://localhost:5000/node_modules/angular2/bundles/angular2.min.js:9:6397) at e._getByKey (http://localhost:5000/node_modules/angular2/bundles/angular2.min.js:9:5826) at e._getByDependency (http://localhost:5000/node_modules/angular2/bundles/angular2.min.js:9:5602) at e._instantiate (http://localhost:5000/node_modules/angular2/bundles/angular2.min.js:9:3644) at e._instantiateProvider (http://localhost:5000/node_modules/angular2/bundles/angular2.min.js:9:3376)
这是我的代码:
. Jade :
.center-area('data-editable'="true")
header.center-header
.view-path Upravljaj administratorima
.center-content
header.content-header
.content-header-left
.content-header-title Administratori
.content-header-subtitle
| Pregledajte i upravljajte administratorima
| radiopostaje – dodijelite administrativne
| ovlasti korisnicima ili ih uklonite postojećim administratorima.
b Sustav smije imati najviše 10 administratora.
.content-header-right
i.material-icons.icon edit
nav.content-options( '[ngSwitch]'="editable" '[ngClass]'="{'uneditable-ui': !editable, 'editable-ui': editable}" )
button( '*ngSwitchWhen'="false" '(click)'="toggleEditable()" ) Uredi popis administratora
nav.content-options.editable-ui
button( '*ngSwitchWhen'="true" '(click)'="toggleEditable()" ) Završi uređivanje popisa
ul.content-primary.content-list
li.content-list-item.admin-item( '*ngFor'="#admin of admins")
.content-list-item-content
.content-list-item-name {{admin.first_name}} {{admin.last_name}}
.content-list-item-data
.content-list-item-data-item.user-mail {{admin.email}}
.content-list-item-data-item.user-age {{admin.year_of_birth}}
.content-list-item-data-item.user-occupation {{admin.occupation}}
.content-list-item-options.editable-ui
button.alt
i.material-icons clear
li.content-list-item.content-list-search-item.editable-ui( '*ngIf'="editable" )
form
.content-list-item-content
label(for='add-item-search') Dodaj administratora
input.add-item-search(type='text', name='add_track_search')
.content-list-item-options
button.raised.add-item-button
i.material-icons person_add
.ts:
import { View, Component } from 'angular2/core';
import { Location, RouteConfig, RouterLink, Router, CanActivate } from 'angular2/router';
import { Http } from 'angular2/http';
import { COMMON_DIRECTIVES, FORM_DIRECTIVES, FormBuilder, ControlGroup, Validators, Control } from 'angular2/common';
import { Form } from '../../utilities';
@Component({
selector: 'ManageAdmins',
templateUrl: './dest/settings/manageAdmins/manageAdmins.html',
directives: [COMMON_DIRECTIVES, FORM_DIRECTIVES]
})
export class ManageAdmins {
admins: Admin[];
editable: boolean;
toggleEditable() {
this.editable = !this.editable;
}
constructor(http: Http) {
this.editable = false;
this.admins = new Array();
http.get('/owner/admins/list').map((res) => res.json().data).subscribe((res) => {
for (let i in res) {
let admin = new Admin(res[i]);
this.admins.push(admin);
}
});
}
}
class Admin {
id: number;
first_name: string;
last_name: string;
email: string;
year_of_birth: string;
occupation: string;
constructor(obj: Object) {
this.id = obj['id'];
this.first_name = obj['first_name'];
this.last_name = obj['last_name'];
this.email = obj['email'];
this.year_of_birth = obj['year_of_birth'];
this.occupation = obj['occupation'];
}
}
编辑:我的根.ts
import { FORM_PROVIDERS } from 'angular2/common';
import { ROUTER_PROVIDERS, Location, LocationStrategy, PathLocationStrategy } from 'angular2/router';
import { HTTP_PROVIDERS, RequestOptions, BaseRequestOptions } from 'angular2/http';
import { bootstrap } from 'angular2/platform/browser';
import { provide, Injectable } from 'angular2/core';
import { App } from './app/app';
@Injectable()
export class DefaultRequestOptions extends BaseRequestOptions {
constructor() {
super();
this.headers.set("Content-Type", "application/x-www-form-urlencoded");
}
}
bootstrap(
App,
[
FORM_PROVIDERS,
ROUTER_PROVIDERS,
HTTP_PROVIDERS,
provide(LocationStrategy, { useClass: PathLocationStrategy }),
provide(RequestOptions, { useClass: DefaultRequestOptions })
]
);
最佳答案
要获得更易读的错误,您可以使用 Angular2 发行版中的 xxx.dev.js
文件。
您的错误消息说尝试注入(inject)某些东西时出现问题。关于您提供的代码,它可能与 Http
类实例的注入(inject)有关。引导应用程序时是否添加 HTTP_PROVIDERS
:
import {bootstrap} from 'angular2/platform/browser';
import {AppComponent} from './app.component';
import {HTTP_PROVIDERS} from 'angular2/http';
bootstrap(AppComponent, [ HTTP_PROVIDERS ]);
关于Angular2 异常 : No provider for e! (e -> e),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34762113/
正在复制的问题是,当sew呈现登录页面时,然后我们继续执行身份验证,现在将我们重定向到网站的仪表板,此时我们继续关闭会话,并且在之前的交互中生成的这些cookie没有被删除。这个问题是重复性的,并且一
我是 Flutter 的新手,目前正在研究 DI。 我正在使用 flutter_bloc 和 provider 包。 flutter_bloc 附带一个 RepositoryProvider,我现在问
我是 Flutter 的新手,目前正在研究 DI。 我正在使用 flutter_bloc 和 provider 包。 flutter_bloc 附带一个 RepositoryProvider,我现在问
我正在使用 Angular2 开发一个应用程序。 我正在尝试在我的应用程序中使用 Reactive Forms,但我遇到了一些错误: 第一个错误是关于 NgControl 的,如下所示: No pro
最近很多用户在使用电脑的时候发现了wmi provider host进程占用内存比较大,不知道这个进程到底是干什么的,能不能禁止,怎么禁止。下面来一起看看想想的介绍吧。 wmi provide
我的问题是: 当我在设计时不知道这些表达式的数量和类型时,如何将列表中的表达式拼接成一个引用? 在底部,我包含了类型提供程序的完整代码。 (我已经剥离了这个概念来证明这个问题。)我的问题出现在这些行:
我目前正在学习使用 Flutter 进行应用程序开发,并已开始学习 Provider 包。我遇到了一些困难并收到错误: “在此...小部件之上找不到正确的提供者” 我最终移动了 Provider 小部
我是 android 的新手,我正在学习如何使用 JavaMail API 发送电子邮件的教程,我已经正确添加了必要的 Jar,但我总是遇到无法解析 GmailSender 类上的符号提供程序,我尝试
我正在我的 Angular 应用程序中进行单元测试,我正在使用 TestBed 方法, 我正在测试组件,所以每个规范文件看起来像这样 import... describe('AppComponent'
enter image description here 代码:这是我的 index.js 文件 index.js import { Provider } from "react-redux"
Microsoft ASP.NET Universal Providers 1.1昨天与System.Web.Providers 1.2一起发布.在后面的 nuget 页面上声明:Legacy pac
在我的 Next js 项目中,我使用了 Next auth,其中 import {Provider} from 'next-auth/client' , 并包裹 在 _app.js 中。 但是,与此
当我在 View 模型中使用如下界面时 class MainViewModel @ViewModelInject constructor( private val trafficImagesR
更新 - 我实际上发现它是 Flutter Issue . 我有两个 Provider,一个是 EntriesProvider,另一个是 EntryProvider。我在创建条目时使用我的 Entry
function configure($provide, $injector) { $provide.provider("testservice", function () {
这真让我抓狂。我似乎无法弄清楚这有什么问题。 代码: public interface IMinutesCounter { void startTimer(); void stopTi
我在我的项目中玩 Dagger 2,然后我陷入了这个错误编译。-> Error:(18, 21) error: ....MyManager cannot be provided without an
我有一个 Resteasy 应用程序,它使用 Spring 并包含 ContainerRequestFilter 和 ContainerResponseFilter 实现,并用 @Provider 注
我正在尝试使用 Dagger2 设置一个新项目,我以前使用过 Dagger2,但现在我正在尝试自己从头开始设置它。我正在从我参与的 Kotlin 项目中获取示例,但无法像现在在 Kotlin 中一样为
我刚开始学习 dagger2,遇到了一个奇怪的问题,在我看来像是一个错误。这是模块: @Module public class SimpleModule { @Provides Coo
我是一名优秀的程序员,十分优秀!