0
どういうわけか特定の投稿にコメントを追加できません。コメントはmongoデータベースに挿入されていません。meteorjsの投稿にコメントを追加できません
コメントページのHTMLコードがある:
<template name="comments">
<h2><b>{{name}}</b></h2>
{{> addComment}}
<ul>
{{#each comment}}
<li>{{comment}}</li>
{{/each}}
</ul>
</template>
<template name='addComment'>
<input type='text' placeholder='Add comment here' name='comment' id ='mycomment'>
<button class="btn btn" type="button" id='btn'>Comment</button>
</template>
ここ{{名前}}はコメントがなされた前記ポストの名前を指します。 私を助けてください。おかげです。
おかげで、私はautopublishを取り除くため、コメントは見えなかったことが判明。まだ助けてくれてありがとう。 –