我想知道像客户端/服务器操作模型这样基本的东西是否可以通过 Meteor (meteor.com) 框架轻松实现。
原始模板应该
<template name="input">
<div>
<input type="text" val="">
<input type="submit">
</div>
</template>
<template name="output">
<div id="output">
</div>
</template>
等待输入,调用服务器对serverFunction()
输入的值执行,并将结果插入到输出标签中。不需要集合、mongo 或身份验证。当然,每个客户都应该收到自己的结果。似乎Meteor.publish()
只对集合起作用。