杜撰的名字,这个系列文章旨在记录工作中开发APP所要学习meteor的过程。 最简单的例子,运行Meteor自带的缺省的Hello world例子。 安装好Meteor后,建立一个空白目录。 然后: meteor create simple-todos cd simple-todos meteor
分类:
其他好文 时间:
2016-02-22 15:31:09
阅读次数:
119
By Daniel Du I have been studying Meteor these days, and find that Meteor is really a mind-blowing framework, I can talk about this latter. I was insp...
Meteor ShowerTime Limit:1000MSMemory Limit:65536KTotal Submissions:12816Accepted:3451DescriptionBessie hears that an extraordinary meteor shower is co...
分类:
其他好文 时间:
2016-01-22 13:22:38
阅读次数:
162
功能描述:在浏览器退出时(所有tab关闭时)退出登录需求来源:支持类似传统网页登录时的remember me选项背景:Meteor应用中,用户登录后,会在浏览器的localStorage保存resume token, 所以下次再使用该浏览器打开同一meteor应用时,会自动登录。有时,我们希望应用支...
分类:
其他好文 时间:
2016-01-06 00:20:52
阅读次数:
124
Meteor ShowerTime Limit:1000MSMemory Limit:65536KTotal Submissions:12642Accepted:3414DescriptionBessie hears that an extraordinary meteor shower is co...
分类:
其他好文 时间:
2015-12-23 00:34:35
阅读次数:
432
Meteor账户系统构建与accounts-base包之上,并为publish和methods提供userId的顶层支持。核心包提供的功能有:数据库中的用户记录支持;额外的包提供密码安全验证;第三方登录服务整合;和预置的用户接口。1、安装password包通过下面命令在meteor账号系统中添加pa...
分类:
其他好文 时间:
2015-11-02 17:16:07
阅读次数:
260
简介先来活动一下大脑。假设你坐在电脑面前,在两个窗口中打开同一个文件夹。在其中一个窗口中删除一个文件,另一个窗口中的这个文件会消失吗?不用实际操作你也知道肯定会消失的。在本地文件系统中的操作,不用刷新或者回调,变动就能应用到所有地方。我们再来看一下相同的事情在网页中会有什么结果。例如,你在两个浏览器...
分类:
其他好文 时间:
2015-10-29 00:11:04
阅读次数:
263
1、安装bootstrap3-datepicker包meteor addrajit:bootstrap3-datepicker2、使用方法ExampleIn your handlebars template:In client-side JS code:Template.mytemplate.ren...
分类:
其他好文 时间:
2015-10-25 20:49:38
阅读次数:
325
流星雨撞击地球(平面直角坐标第一象限),问到达安全地带的最少时间。对于每颗流星雨i,在ti时刻撞击(xi,yi)点,同时导致(xi,yi)和上下左右相邻的点在ti以后的时刻(包括t)不能再经过(被封锁)。安全地带为永远不会被封锁的点。简单bfs,开始WA在把平面空间上限当成300*300,但根据题目...
分类:
其他好文 时间:
2015-10-24 21:38:28
阅读次数:
196
bfs就好,取最早的毁坏时间。就一组数据,初始化都没有,直接用dist[][]状态判重。#include#include#include#include#include#include#include#include#include#include#includeusing namespace st...
分类:
其他好文 时间:
2015-10-18 16:46:11
阅读次数:
228