简体   繁体   English

如何解决“错误:未捕获(承诺):错误:没有提供”Ionic 3中的错误

[英]How to solve “Error: Uncaught (in promise): Error: No provider for” error in Ionic 3

I'm learning Ionic 3 and I'm getting this error when trying to make a custom validator which checks for a unique username. 我正在学习Ionic 3,当我尝试制作一个检查唯一用户名的自定义验证器时,我遇到了这个错误。 I've tried my best but couldn't solve this issue. 我尽我所能但无法解决这个问题。

CustomValidators.ts CustomValidators.ts

import { Directive, Input } from '@angular/core';

import { FormControl, Validator, AbstractControl } from '@angular/forms';
import { Http, Response, Headers, RequestOptions } from '@angular/http';
import {Observable} from 'rxjs/Rx';

export class CustomValidators {


    constructor(public http: Http){}

      public hasUniqueEmail(
        control: FormControl,
      ){

        return this.http.get('assets/users.json')
        .map(res => res.json())
        .catch((error:any) => Observable.throw(error.json().error || 'Server error'));

      }


}

signup.ts signup.ts

import { Component } from '@angular/core';
import { IonicPage, NavController, NavParams } from 'ionic-angular';
import { FormBuilder, FormGroup,  Validators } from '@angular/forms';
import { CustomValidators } from '../../components/CustomValidators';

/**
 * Generated class for the SignupPage page.
 *
 * See http://ionicframework.com/docs/components/#navigation for more info
 * on Ionic pages and navigation.
 */


@IonicPage()

@Component({
  selector: 'page-signup',
  templateUrl: 'signup.html',
})


export class SignupPage {

  private sform : FormGroup;

  constructor(
        private formBuilder: FormBuilder,
        private myValidator: CustomValidators,
    ){

    this.sform = this.formBuilder.group({
      name: ['', Validators.compose([Validators.maxLength(30), Validators.pattern('[a-zA-Z ]*'), Validators.required])],
      email:  ['', Validators.compose([Validators.email,this.myValidator.hasUniqueEmail])],
      password: ['',Validators.required                                                                                             ],
    });

  }


  logForm() {

  }


}

This is the error that I'm getting: 这是我得到的错误:

"Uncaught (in promise): Error: No provider for CustomValidators!
Error
    at Error (native)
    at injectionError (http://localhost:8100/build/main.js:1583:86)
    at noProviderError (http://localhost:8100/build/main.js:1621:12)
    at ReflectiveInjector_._throwOrNull (http://localhost:8100/build/main.js:3122:19)
    at ReflectiveInjector_._getByKeyDefault (http://localhost:8100/build/main.js:3161:25)
    at ReflectiveInjector_._getByKey (http://localhost:8100/build/main.js:3093:25)
    at ReflectiveInjector_.get (http://localhost:8100/build/main.js:2962:21)
    at NgModuleInjector.get (http://localhost:8100/build/main.js:3909:52)
    at resolveDep (http://localhost:8100/build/main.js:11369:45)
    at createClass (http://localhost:8100/build/main.js:11225:91)"

You need to add the provider to the NgModule, ie module.ts under providers, 您需要将提供程序添加到NgModule,即提供程序下的module.ts,

providers: [
  CustomValidators 
]

From what I can see you're missing 2 things 从我所看到的你遗漏了两件事

1) no decorator for the class, you're importing Directive but never using it 1)没有类的装饰器,你导入Directive但从不使用它

import { Directive } from '@angular/core';

@Directive({
  name: 'directive-name'
})
export class CustomValidators {
  //...
}

2) there's no import in the NgModule 2)NgModule中没有导入

import { CustomValidators } from 'path/to/file';

@NgModule({
  //...
  providers: [
    CustomValidators
  ]
})

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM