我尝试为我的CodeIgniter应用制作combobox / html-select标签。
对于我的表上的字段值“是”:
如果我选择“是”,则基于变量,而如果“否”,则值为0。
表中字段值“ IsNo”:
如果我选择“是”,则值为0,如果选择“否”,则基于变量。
这是我的查看代码:
@Component({
selector: 'app-root',
templateUrl: './app-root.component.html',
styleUrls: ['./app-root.component.scss']
})
export class AppRoot extends DataParent{
constructor(private dataParentService: DataParentService(or your class name of data-parent.service.ts) ,
private dataChildService: DataChildService(or your class name of data-child.service.ts)) {}
clicka() {
this.dataChildService.a() {
this.dataParentService.a()
}
}
}
我的控制器如下所示:
<td align="center">
<select name="YesNo[]">
<option value="<?php echo $list2_1b_1b->Value;?>">Yes</option>
<option value="<?php echo $list2_1b_1b->Value;?>">No</option>
</select>
</td>