继我之前关于使用 Meteor.call 从服务器上的对象获取数据的帖子之后,我想知道一旦从服务器接收到类似的对象数据,这些相同的数据如何呈现 HTML。这是一个简单的例子:
/server/svr.js
Meteor.methods({
test: function(text) {
var result = {};
result.foo = "<em>" + text + "</em>";
result.bar = text;
return result;
}
});
/client/del.js
Meteor.call('test', "Hello World - May 2012", function(err, data) {
if (err)
console.log(err);
Session.set('q', data);
});
Template.hello.greeting = function() {
return Session.get('q').foo;
};
当我在标准流星应用程序中运行此代码时,我在浏览器窗口中看到:
Hello World!
<em>Hello World - May 2012</em>
理想情况下,我希望包含 html 代码的会话变量能够呈现传递给它的内容(在上面的简单示例中 - 在输出到浏览器时使第二行变为斜体)。我该怎么做呢?
提前感谢您的帮助!