我正在使用 ion-checkbox
NTSTATUS NtStatus = 0;
HANDLE FileHandle = NULL;
IO_STATUS_BLOCK IoStatusBlock = { 0 };
FILE_FS_VOLUME_INFORMATION FsVolumeInformation = { 0 };
...
Open the handle to the disk here, and then check that you have a valid handle.
...
NtStatus = NtQueryVolumeInformationFile(FileHandle,
&IoStatusBlock,
&FsVolumeInformation,
sizeof(FILE_FS_VOLUME_INFORMATION),
FileFsVolumeInformation);
...
<ion-list *ngIf = "heirList.length > 0">
<ion-item *ngFor = "let each of heirList">
<ion-label>
<h5>{{each.name}} </h5>
<h5 clear item-end class="text-blue badge-alert"> #102</h5>
</ion-label>
<ion-checkbox class="selectlist" (ionChange) = "addHeir(each)"></ion-checkbox>
</ion-item>
</ion-list>
正在检查该元素是否存在于另一个数组中(如果存在则将其删除),否则它将在该数组中添加该元素,到目前为止一切正常,但是如果我回到该页面,则不会。 t显示选中的复选框。
addHeir(each)
功能如下:
addHeir(value)
答案 0 :(得分:0)
您需要设置ngModel
指令
<ion-checkbox [(ngModel)]="each" class="selectlist" (ionChange) = "addHeir(each)"></ion-checkbox>