想象一下,我有这个集合post.js:
{
text: 'Some long text, article',
likesCount: 10
}
模板文件post.html:
<template name='post'>
Article - {{text}}
The number of likes - {{likesCount}}
</template>
每当任何用户喜欢发帖时,数据都会被反应更新。在每次 likesCount 更新时,文字是否也会从数据库转移到客户端,或仅转移 likesCount ?这将导致互联网连接成本高的互联网流量高。
答案 0 :(得分:1)
据我了解,Meteor只传输更改的字段。您可以使用开发人员工具中的网络选项卡自行确认。