1
好吧,我不確定爲什麼我不能渲染代碼。首先,如果我CONSOLE.LOG users.content我得到我想要的內容,但我一些如何不能將它傳遞給一個文本,使其顯示的它...meteor and textareas
Users = new Meteor.Collection("users");
if(Meteor.is_client){
Template.inputUser.code = function(){
var el = Users.find({name:"oscar"});
el.forEach(function(users){
console.log(users.content);
})
}
}
,然後在我的HTML模板我有
<body>{{> inputUser}}</body>
<template name="inputUser">
<textarea>{{content}}</textarea>
</template>
而且我會對數據庫記錄吸既然這麼
if(Meteor.is_server)
Users.insert({name:"oscar",content:"hello world"})
感謝您的幫助球員。