标签:
最近入职到新一家公司,技术总监让我给我介绍了一个新技术---Meteor,这是我之前没有接触过的一项技术,我查阅了相关资料,原来这是一项基于Node js的纯Javascript技术,然后给了我们一个项目实例去练习,有兴趣的伙伴也可以去看一下,http://zh.discovermeteor.com,当然需要先去下载几款基本的开发工具,我下载的是Webstorm2016版 开发工具,总的来说这项技术还是很强大的,有之前接触过的大牛欢迎交流一下。
<template name="postsList">
<div class="posts">
{{#each posts}}
{{> postItem}}
{{/each}}
{{#if nextPath}}
<a class="load-more" href="{{nextPath}}">Load more</a>
{{else}}
{{#unless ready}}
{{> spinner}}
{{/unless}}
{{/if}}
</div>
</template>
类似上面这种,是不是和我们之前学习的很相似。
标签:
原文地址:http://www.cnblogs.com/BraveBoy/p/5881097.html