本文介绍了列表中的离子2离子输入的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试在离子2的列表中创建一个包含3个输入的自定义项,但它不起作用。当我只输入1个输入时,没有问题。但是如果我把其他标签加上
I am trying to make a custom item containing 3 inputs in a list in ionic 2, but it's not working. When I put only 1 input, there's no problem. But if I put other tag with "
<ion-item *ngFor="let pergunta of avaliacao; let i=index">
<ion-row>
<ion-input placeholder="Pergunta" [(ngModel)]="pergunta.descricao" clearInput></ion-input>
</ion-row>
<ion-row>
<ion-textarea [(ngModel)]="pergunta.opcoes"></ion-textarea>
</ion-row>
<ion-row>
<ion-label>Obrigatória</ion-label><ion-checkbox [(ngModel)]="pergunta.obrigatoria"></ion-checkbox>
</ion-row>
</ion-item>
推荐答案
我做到了。似乎我不能在ion-item中输入几个输入。只需将div替换为ion-item
I did it. It seems I can't put several input inside ion-item. Just replaced ion-item for div
这篇关于列表中的离子2离子输入的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!