- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我正在使用 ng-template
作为模态,一旦模态打开,我想在其中自动填充值。但每次我的表单都是 undefined
。我们有什么办法可以实现这一目标吗?
我的代码如下:模态代码。我通过点击页面上的按钮调用 updateProfile()
函数。我正在使用 ng-bootstrap 模式。
/****Component.html*****/
<ng-template #profile let-c="close" let-d="dismiss">
<div class="modal-header">
<h4 class="modal-title">Profile update</h4>
<button type="button" class="close" aria-label="Close" (click)="d('Cross click')">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p>Personal Information</p>
<form novalidate #updateUserForm="ngForm" (ngSubmit)="updateUser(updateUserForm)">
<div class="form-inline margin-bottom form-padding">
<label class="col-sm-3">Mobile Number
<span class="asterisc"> *</span>
</label>
<label>{{data.mobileNumber}}</label>
</div>
<div class="form-inline margin-bottom form-padding">
<label class="col-sm-3">First Name
<span class="asterisc"> *</span>
</label>
<input type="text" required ngModel required name="firstName" class="form-control" value="{{data.firstName}}">
</div>
<div class="form-inline margin-bottom form-padding">
<label class="col-sm-3">Last Name
<span class="asterisc"> *</span>
</label>
<input type="text" required ngModel name="lastName" class="form-control" value="{{data.lastName}}">
</div>
<div class="form-inline margin-bottom form-padding">
<label class="col-sm-3">Email
<span class="asterisc"> *</span>
</label>
<input type="text" required ngModel name="email" class="form-control" value="{{data.emailId}}">
</div>
<div class="form-inline container">
<input type="checkbox" [(ngModel)]="changePassword" name="changePassword" class="form-control checkmark"> Change Password
</div>
<div id="updatePassword" *ngIf="changePassword">
<div class="form-inline margin-bottom form-padding">
<label class="col-sm-3">Current Password
<span class="asterisc"> *</span>
</label>
<input type="password" required ngModel minlength="6" name="currentPassword" class="form-control" [(ngModel)]="currentPasswordText"
#currentPassword="ngModel">
<div *ngIf="currentPassword.invalid && (currentPassword.dirty || currentPassword.touched || currentPassword.errors.minlength)"
class="alert alert-danger">
<div *ngIf="currentPassword.errors.required">
Password is required.
</div>
<div *ngIf="currentPassword.errors.minlength">
Password must be at least 6 characters long.
</div>
</div>
</div>
<div class="form-inline margin-bottom form-padding">
<label class="col-sm-3">New Password
<span class="asterisc"> *</span>
</label>
<input type="password" required ngModel minlength="6" name="newPassword" class="form-control" [(ngModel)]="newPasswordText"
#newPassword="ngModel">
<div *ngIf="newPassword.invalid && (newPassword.dirty || newPassword.touched || newPassword.errors.minlength)" class="alert alert-danger">
<div *ngIf="newPassword.errors.required">
Password is required.
</div>
<div *ngIf="newPassword.errors.minlength">
Password must be at least 6 characters long.
</div>
</div>
</div>
<div class="form-inline margin-bottom form-padding">
<label class="col-sm-3">Confirm Password
<span class="asterisc"> *</span>
</label>
<input type="password" required ngModel minlength="6" name="ConfirmPassword" class="form-control" [(ngModel)]="ConfirmPasswordText"
#ConfirmPassword="ngModel">
<div *ngIf="ConfirmPassword.invalid && (ConfirmPassword.dirty || ConfirmPassword.touched || ConfirmPassword.errors.minlength)"
class="alert alert-danger">
<div *ngIf="ConfirmPassword.errors.required">
Password is required.
</div>
<div *ngIf="newPasswordText !== '' && ConfirmPasswordText !== newPasswordText" class="alert alert-danger">
Password didnot match
</div>
<div *ngIf="ConfirmPassword.errors.minlength">
Password must be at least 6 characters long.
</div>
</div>
</div>
</div>
<div class="modal-footer">
<input type="submit" class="btn btn-primary" value="SAVE">
</div>
</form>
</div>
<!-- <div class="modal-footer">
<button type="button" class="btn btn-priamary set-col" (click)="c('Close click')">Save</button>
</div> -->
</ng-template>
/*typescript file**/
openProfile(profile){
let id = '5b39e0d0be883b029870bfc8';// hardcoded value
this.modalService.open(profile, { size: 'lg' });
this._service.getUserProfile(id).subscribe((res)=>{
console.log(res);
this.data = res;
//this.form.controls['firstName'].setValue(res['firstName']);
//this.updateUserForm['']
this.UpdateUserForm.patchValue({
'firstName':this.data.firstName
})
},(error)=>{
console.log(error)
});
}
/*响应*/
{
"isActive": false,
"role": "admin",
"permissions": [
"101",
"202"
],
"_id": "5b39e0d0be883b029870bfc8",
"firstName": "test",
"lastName": "test",
"emailId": "test@gmail.com",
"password": "$2b$10$sQ1CCrtRy/Hvd3p3tje7t.A4.G7Jt2ayoETpniW8RlWSjkj1H77l2",
"mobileNumber": "xxxxxxxxxx",
"createdAt": "2018-07-02T08:22:40.223Z",
"__v": 0
}
最佳答案
我为此表单添加了两种方式的数据绑定(bind)。
HTML 文件,
<div class="modal-body">
<p>Personal Information</p>
<form novalidate #updateUserForm="ngForm" (ngSubmit)="updateUser(updateUserForm)">
<div class="form-inline margin-bottom form-padding">
<label class="col-sm-3">Mobile Number
<span class="asterisc"> *</span>
</label>
<label>{{data.mobileNumber}}</label>
</div>
<div class="form-inline margin-bottom form-padding">
<label class="col-sm-3">First Name
<span class="asterisc"> *</span>
</label>
<input type="text" required [(ngModel)]="firstName" required name="firstName" class="form-control">
</div>
<div class="form-inline margin-bottom form-padding">
<label class="col-sm-3">Last Name
<span class="asterisc"> *</span>
</label>
<input type="text" required [(ngModel)]="lastName" name="lastName" class="form-control">
</div>
<div class="form-inline margin-bottom form-padding">
<label class="col-sm-3">Email
<span class="asterisc"> *</span>
</label>
<input type="text" required [(ngModel)]="email" name="email" class="form-control">
</div>
<div class="form-inline container">
<input type="checkbox" [(ngModel)]="changePassword" name="changePassword" class="form-control checkmark"> Change Password
</div>
<div id="updatePassword" *ngIf="changePassword">
<div class="form-inline margin-bottom form-padding">
<label class="col-sm-3">Current Password
<span class="asterisc"> *</span>
</label>
<input type="password" required minlength="6" name="currentPassword" class="form-control" [(ngModel)]="currentPasswordText">
</div>
<div class="form-inline margin-bottom form-padding">
<label class="col-sm-3">New Password
<span class="asterisc"> *</span>
</label>
<input type="password" required minlength="6" name="newPassword" class="form-control" [(ngModel)]="newPasswordText">
</div>
<div class="form-inline margin-bottom form-padding">
<label class="col-sm-3">Confirm Password
<span class="asterisc"> *</span>
</label>
<input type="password" required minlength="6" name="ConfirmPassword" class="form-control" [(ngModel)]="ConfirmPasswordText">
</div>
</div>
<div class="modal-footer">
<input type="submit" class="btn btn-primary" value="SAVE">
</div>
</form>
</div>
typescript 文件,
//variable starts here
firstName:any;
lastName:any;
email:any;
changePassword:any;
currentPasswordText:any;
newPasswordText:any;
ConfirmPasswordText:any;
data={
"isActive": false,
"role": "admin",
"permissions": ["101", "202"],
"_id": "5b39e0d0be883b029870bfc8",
"firstName": "Anish",
"lastName": "Kumar",
"emailId": "anish@gmail.com",
"password": "$2b$10$sQ1CCrtRy/Hvd3p3tje7t.A4.G7Jt2ayoETpniW8RlWSjkj1H77l2",
"mobileNumber": "95990709xx",
"createdAt": "2018-07-02T08:22:40.223Z",
"__v": 0
};
//variable ends here
//Add this line for assign values to textbox wherever you want
this.firstName=this.data.firstName;
this.lastName=this.data.lastName;
this.email=this.data.emailId;
this.currentPasswordText=this.data.password; // the password has been encrypted you have to decrypt
updateUser(formData){
console.log("Form Value",formData.value); //here iam logged form value
}
注意:-我删除了您的验证,请添加您的验证部分。
输出截图,
数据值已正确绑定(bind)我在这里测试的是示例屏幕截图。我使用未正确设计但数据绑定(bind)正确的示例 html 文件进行了测试。
希望它能解决您的问题。
关于angular - 如何设置表单字段值ng-Bootstrap模型的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51273915/
在angular 6项目中,我使用angular cli命令ng g lierary @some/libName创建了 Angular 库。在我的库中,我有一个需要@ng-bootstrap/ng-b
我在 plunker 有一个简单的例子.我在一个元素上有一个 ng-show,另一个元素有一个选择。选择应该切换显示/隐藏其他(输入)元素。最初将 select 设置为 Yes 会按预期显示其他输入元
我需要一个由其定义的属性(受监控)过滤的数据列表,我不能这样做: ng-if="project.monitored" 因为我需要计算不受监控的数量。 对于这个例子,我简化了从 getProjects(
我知道 ng-show 和 ng-hide 影响元素上设置的类,而 ng-if 控制元素是否呈现为 DOM 的一部分 是否有选择 ng-if 而不是 ng-show/ng-hide 或反之亦然的示例?
我试图理解 ng-if 和 ng-show/ng-hide 之间的区别,但它们看起来相同对我来说。 选择使用其中之一时我应该记住什么区别吗? 最佳答案 ngIf ngIf 指令根据表达式删除或重新创建
我有一个基本问题,通过查看 Angular 文档或 Google 找不到答案,因此我假设这是不可能的,但我想确定一下。 基本上我想要的是使用一个变量,例如$scope.loggedIn,如下所示: H
据我了解ng-show和ng-hide影响元素上设置的类,并且 ng-if控制元素是否呈现为 DOM 的一部分。 是否有选择 ng-if 的指南超过ng-show/ng-hide或者反之亦然? 最佳答
我的 html 中有几个 div。我正在将内容导出为 PDF,当用户单击导出按钮时会下载 PDF。我希望少数 div 的内容不导出/显示在 PDF 中,但应显示在网页上。我已将 ng-if="!isE
我有一个标记按钮,当用户点击它时,标记讨论,然后标记按钮被替换为文本“成功标记”。目前,我在单击标记按钮后无法禁用 ng-click 时遇到了问题。 ng-click 对于文本“已成功标记”仍然存在,
我在 Angular 1.4.7 中有这段代码: console.log('press') 不会在按下任何键时触发。我也尝试使用 keyup 和 keydown,但它们也不起作用。 我知道一个元素需
正如标题中提到的,我不知道如何使用 ng-bind-html 在部分内部呈现 html。 这里有一个 plunker 来说明。 http://plnkr.co/edit/YFfHsahcum7XA8G
将 ng-bootstrap 安装到我的 Angular-CLI(11.0.4) 时出现错误。 什么时候 ng add @ng-bootstrap/ng-bootstrap 还有我的日志文件 [err
我想从另一个 ng-controller 访问 ng-model,这可能吗?如何实现?在下面的代码中,我使用两个 Controller ,第一个 Controller 具有 mddl1,另一个 Con
在我的应用程序中,当我对文章进行 ng-repeat 时,用户单击“我想隐藏并显示一些元素”。为此,我使用的是 videoPlaying[$index],它对于所有具有 ng-hide 的元素都可以正
预信息 我尝试将管理员和客户分开在不同的阶段或 View 中。 这样,管理员可以在将表发布给客户之前对其进行修改。 问题在表格 -> td 中有按钮来控制暂存、释放(显示)或恢复(隐藏)? 所以基本上
这个问题在这里已经有了答案: What are the nuances of scope prototypal / prototypical inheritance in AngularJS? (3
我有以下奇怪的情况 - Controller 片段 - $scope.filterNum = {0: 'filterVal1', 1: 'filterVal2', 2: 'filterVal3', 3
AngularJS 版本:1.3.8 JSFiddle: http://jsfiddle.net/uYFE9/4/ 我一直在开发一个小的 AngularJS 应用程序,遇到了一些问题。我在页面上有一个
我有一个范围对象,其中包含具有 3 个不同图像的对象。我在 div 内显示图像,该图像重复直到范围对象的长度。我有 3 个不同的 img 标签,它们具有 ng-if 属性,并且仅一次显示 3 个图像之
在 AngularJs 中没有提供 ng-enabled 指令。是否有任何适当的理由不在框架中提供该指令,因为当您可以使用 ng- 时,我们同时拥有 ng-show 和 ng-hide隐藏来实现我们的
我是一名优秀的程序员,十分优秀!