为什么我得到这个错误不能读取未定义的触摸属性?
为什么它不能读取formName。控制['email']。触摸
,但它可以读取formName。获取('custDetails')。触摸
<form [formGroup]="formName">
<fieldset formGroupName="custdetails">
<div class="form-group" [ngClass]="{'has-error': formName.controls['email'].touched
&& formName.controls['email'].hasError('invalidEmailAddress')}">
<label class="control-label">Email</label>
<input type="text" class="form-control"
formControlName="email" name="email" required />
</div>
</fieldset>
</form>
当我们使用formName.get('custdetails.email')。
TypeError:_this.subscribe不是一个函数在值(http://localhost:3000/node_modules/rxjs/operator/toPromise.js: 68:15)在新区域Aware Promise(http://localhost:3000/node_modules/zone.js/dist/zone.js: 551:29)在Object.toPromise(http://localhost:3000/node_modules/rxjs/operator/toPromise.js: 66:12)在_convertToPromise(http://localhost:3000/node_modules/@角/窗体//bundles/forms.umd.js:541: 73)在FormC的rray.map(本机)ontrol.eval[作为asyncValidator](http://localhost:3000/node_modules/@角/窗体//bundles/forms.umd.js:530: 101)在FormControl。_runAsyncValidator(http://localhost:3000/node_modules/@角/窗体//束/forms.umd.js:2670: 62)。摘要ontrol.update值和有效性(http://localhost:3000/node_modules/@角/形式//束/forms.umd.js:2630: 26)在FormControl.set值(http://localhost:3000/node_modules/@角/形式//束/forms.umd.js:2988: 18)在DefaultValueAccessor.eval[as onChange](超文本传输协议://localhost: 3000/node_modules/@角/窗体//bundles/form. umd. js: 1658:21)在CompiledTemplate. proxyViewClass的Wrapper_DefaultValueAccessor. handleEvents(/InternalFormsSharedModu/DefaultValueAccess/wrapper. ngfactory. js: 29:34)。View_ReactiveFormComponentFive0handleEvent_36(/AppModul/ReactiveFormComponentMay/组件. ngfactory. js: 717:45),在CompiledTemplate. proxyViewClass. ava(超文本传输协议://localhost: 3000/node_modules/@角/核//bundles/core. umd. js: 12397:41),在HTMLInputElement. ava(超文本传输协议://localhost: 3000/node_modules/@角/平台-浏览器//bundles/平台-浏览器. umd. js: 3224:57),在ZoneDeverate. InvkeWork(超文本传输协议://localhost: 3000/node_modules/区. js/dist/区. js: 275:35)
下面是我的表单是如何构造的:
ngOnInit() {
this.formName = this.fb.group({
name: ["", [Validators.required]],
custdetails: this.fb.group({
email: ["", Validators.required, ValidationHelper.emailValidator],
confirm: ["", Validators.required]
}, {
validator: ValidationHelper.emailMatcher
})
})
}
和我的电子邮件验证器:
static emailValidator = (control: AbstractControl) : {[key: string]: boolean} =>{
// RFC 2822 compliant regex
if (control.value.match(/[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?/)) {
return null;
} else {
return { 'invalidEmailAddress': true };
}
}
该字段的完整路径为:
formName.get('custdetails.email')
因此,您需要访问:
formName.get('custdetails.email').touched
此外,表单模型中还有一个错误。当多个验证器应用于同一字段时,应将它们包装在一个数组中:
// Replace that:
email: ["", Validators.required, ValidationHelper.emailValidator]
// With this:
// Notice the additional [ ] around the validators
email: ["", [Validators.required, ValidationHelper.emailValidator]]
通过将两个验证器作为单独的参数传递,Angular将第二个验证器emailValidator
解释为异步验证器,并尝试订阅它。因此出现错误消息“\u this.subscribe不是函数”。
问题内容: 我正在制作非常简单的react应用。但是,当我尝试通过onChange事件调用父(实际上是祖父母)组件的方法时,我一直在获取。 这是触发事件的组件/表单(因此,在绑定的父组件上调用方法…是的,因为我通过道具将其从父组件传递下来,所以在方法上使用了.bound(this)。) 这是我如何通过大多数父(祖父母)组件中的props传递该方法的方法。 这是我作为父项(方法所有者和方法调用程序之
我正在测试发送电子邮件与流星js和nodemailer插件: 流星添加捷运:流星NodeEmailer 当页面加载时,我在导航器的控制台上看到错误:无法读取未定义的属性“创建运输”。 那么问题是什么呢? 代码如下: /////////////////////////////////////////// ///////////////
我知道这方面还有很多类似的问题,但没有一个答案是有效的。在我的例子中,我有下面的代码,我正在尝试按分数降序排列记录数组。 最后一个函数是什么给我的问题.如果用户运行以下: var web=[{url:“www.southanpton.ac.uk”,内容:“南安普敦大学提供学位课程和世界一流的研究测试。”,{url:“www.xyz.ac.uk”,内容:“另一种大学考试”},{url:“www”,内
我一直试图让firebase与react一起工作,但出现了此错误 未经处理的拒绝(TypeError):无法读取未定义的fetch D:/Peti/Programming/node/coursewebpage/src/components/coursePage.js:12 9 | const db=firebase.firestore()10 | const myAuthLevel=(fireba
这是我的猫鼬模式: 这是使用Express的Node.js服务器。它具有路由,如果触发该路由,它将使用请求中传递的信息更新用户的购物车。正文: 我打印到终端userCart,正如您在代码中看到的,它返回给我的是: 当服务器执行时,它返回以下错误: 如果我已经在Mongoose中定义了的结构,为什么不定义它?
请注意,我在react ProductScreen.js中呈现动态数据时有问题 注意,...数据在product.js中呈现得很好,但相同的数据在productscreen.js中不会呈现,因为productscreen.js链接是通过“id”呈现的。 谢谢app.js 导入“./homescreen.css”;从'../Components/Product'导入产品从'React'导入{useE