我試圖訪問由meteor auto-form
創建的數組中的信息。問題集在下面。訪問數組和由流星autoform創建的對象
PlayersSchema = new SimpleSchema({
contacts: {
type: Array,
optional: true
},
"contacts.$": {
type: Object
},
"contacts.$.comments": {
type: String,
label: "Comments From Salesmen"
}
});
我需要使它在最後一個塊的評論,但我沒有任何運氣。 當您訪問第一部分聯繫人時,它會返回object Object
,這是預期的。但是,當我嘗試深入並達到評論部分時,我沒有運氣。我試過contacts.comments
- 和contacts.comments[0]
,沒有任何反應。
這裏是我的控制檯顯示評論的位置,我需要達到
Console Array Comment Placement
一旦我達到我想要將它們放置在模板中我有下面的評論截圖。就像我說的,我可以用object Object
這個表格來顯示,但沒有其他的。
<template name="showPerson">
{{#with person}}
<h1>Show Person Details: {{name}}</h1>
<div class="row">
Comments: {{contacts.comments}}
</div>
{{/with}}
{{> update}}
</template>
新的JavaScript和流星所以請原諒我的無知!
可以添加你的幫手返回評論 – Monasha