本文介绍了Ionic 2读取复选框值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我无法读取离子2中的复选框值
i试用以下代码
I am unable to read checkbox value in ionic 2 i tried following code
<div class="form-group">
<label ></label>
<div *ngFor="let mydata of activity" >
<label>
<input type="checkbox"
name="activity"
value="{{mydata.activity_id}}"
[checked]="activity.includes(mydata)"
(change)="changeSchedules(mydata)"
/>
{{mydata.activity_name}}
</label>
</div>
</div>
脚本文件
this.subscriptionForm = new FormGroup({
activity: new FormArray(this.subscription.schedules.map(schedule => new FormControl(schedule)), Validators.minLength(1))
});
changeSchedules(mydata: any) {
var currentScheduleControls: FormArray = this.subscriptionForm.get('activity') as FormArray;
var index = currentScheduleControls.value.indexOf(mydata);
if(index > -1)
{currentScheduleControls.removeAt(index) }
else
{
currentScheduleControls.push(new FormControl(mydata));
}
}
我搜索了很多东西但是我没有得到正确的解决方案
有人可以帮助弄清楚这个
i searche so many things but i did not get proper solutioncan somebody help to figure out this
推荐答案
请关注我认为它会帮助你
Please following i think it will help you
你的.ts文件代码
export class FormComponent {
cbArr: string[];
cbChecked: string[];
constructor() {
this.cbArr = ['OptionA', 'OptionB', 'OptionC'];
this.cbChecked = [];
}
powers = ['Really Smart', 'Super Flexible',
'Super Hot', 'Weather Changer'];
model = new Hero(18, 'Dr IQ', this.powers[0], 'Chuck Overstreet');
submitted = false;
// TODO: Remove this when we're done
get diagnostic() { return JSON.stringify(this.model); }
updateCheckedOptions(chBox, event) {
var cbIdx = this.cbChecked.indexOf(chBox);
if(event.target.checked) {
if(cbIdx < 0 ){
this.cbChecked.push(chBox);
console.log(chBox);
}
} else {
if(cbIdx >= 0 ){
this.cbChecked.splice(cbIdx,1);
console.log(cbIdx);
}
}
}
updateOptions() {
console.log(this.cbChecked);
}
/////////////////////////////
}
和您的HTML代码
<label for="options">Options :</label>
<div *ngFor="let cbItem of cbArr">
<label>
<input type="checkbox"
name="options"
value="{{cbItem}}"
[checked]="cbChecked.indexOf(cbItem) >= 0"
(change)="updateCheckedOptions(cbItem, $event)"/>
{{cbItem}}
</label>
<button (click)="updateOptions()">Post</button>
updateOptions()您将获得所有选中的复选框值
updateOptions() you will get all selected check box value
这篇关于Ionic 2读取复选框值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!