我有一個組件,我將用它作爲加載到多選題的外殼。下面是如何將組件成立至今Angular2:你如何正確地綁定到嵌套數據?
組件
import { Component } from '@angular/core';
export class Answers{
id: string;
answer: string;
}
const answers: Answers[] = [
{
id: 'exp01q',
answer: 'Its fine as is.'
},
{
id: 'exp02q',
answer: 'I want to make minor adjustments.'
},
{
id: 'exp03q',
answer: 'I want to change my image'
},
{
id: 'exp04q',
answer: 'Ive never wanted to use a particular image until now.'
}
];
@Component({
moduleId: module.id,
selector: 'multi-radio-btn',
templateUrl: 'multi-rad-btn.component.html',
styleUrls: ['multi-rad-btn.component.css']
})
export class MultiRadioBtnShell {
question = 'How do you feel about your current image?';
id = 'exp-img-q';
name = 'exp-ques1';
ans = answers;
}
HTML模板
<h3>radio button shell</h3>
<div class="row justify-content-center">
<fieldset [attr.id]='id' class="card col-8 justify-content-center">
<label class="ques-title">
{{question}}
</label>
<div class="row answer-row-section justify-content-center">
<div *ngFor="let answers of ans" class="col col-12 answer-row justify-content-center">
<div class="col justify-content-center">
<input type="radio"
[attr.id]="answers.id"
[attr.name]="name"
[attr.value]="answers.answer" hidden />
<label [attr.for]="answers.id" class="col ques-ans-title" style="background-color: #4b73a0;">
{{answers.answer}}
</label>
</div>
</div>
</div>
</fieldset>
</div>
它的成立是現在這個樣子的原因是因爲這樣,我試圖在第一次做沒有工作,所以我去了英雄之旅教程跟隨他們如何加載所有的英雄。問題來自未定義的答案。所以我就像他們做英雄一樣操縱那部分,只是爲了做一些我能夠遵循的事情,以確保我得到了如何加載的機制。
我試圖做的是與此
// I had this right above the component
export class ExpQ{
question: string;
id: string;
name: string;
answers:[
{
id: string;
answer: string;
}
]
}
// I had this in the component's class
export const expq: ExpQ[] = [
{
question: 'How do you feel about your current image?',
id: 'exp-img-q',
name: 'exp-ques1',
answers:[
{
id: 'exp01q',
answer: 'Its fine as is.'
},
{
id: 'exp02q',
answer: 'I want to make minor adjustments.'
},
{
id: 'exp03q',
answer: 'I want to change my image'
},
{
id: 'exp04q',
answer: 'Ive never wanted to use a particular image until now.'
}
]
}
]
我與調用它在HTML中的原始的方式
{{} expq.question},{{} expq.name },{{} expq.answers.id},{{expq.answers.answer}}等
起初只加載它工作得很好的問題,但我到了answers:
部分它開始打破。我遇到了這個https://scotch.io/tutorials/using-angular-2s-model-driven-forms-with-formgroup-and-formcontrol,看到addresses:
部分的語法與我需要構建數據的方式非常相似。所以我把所有的東西重新制作成類似的東西。我仍然沒有運氣讓它工作。
最終,我將通過父組件發送問題@input
和@output
以及我遇到的其他一些技巧。但在我甚至想到我需要處理如何將數據全部放入一個源中以便正確地讀取嵌套的數據位之前,我遇到的所有例子都是簡單的單層數據,所以我不確定我需要使用的語法。我該如何做這項工作?
確定我看到如何繼續下去,我把它的語法,我試圖做到這一點是確定然後,我只需要調用這樣的那些部分的原始的方式? – Optiq
是的,把它想成扁平的零件。當您遇到錯誤時,您正在嘗試訪問數組而無需編入索引。例如,如果您嘗試過{{expq.answers [0] .answer}},您可以看到第一個答案(如果存在)。但不是硬編碼,我假設你想像你剛纔所說的那樣迭代它。 – DeezCashews
嗯。我剛回到它並回到'字符串未定義'錯誤。 – Optiq