摘要:教程:http://www.cnblogs.com/shenzhoulong/archive/2011/02/13/1952919.htmlemail:会验证email格式url: 会验证url格式number:限制输入的数字,steprange:滑动条data: datatime datatime...
阅读全文
摘要:教程:http://www.w3school.com.cn/html5/html5_datalist.asp提供自动完成的文本框
阅读全文
摘要:教程:http://www.apjs.net1、ng-app:angularjs 处理的范围2、{{ }} 表达式3、双向数据绑定{{yourname || 'world'}}4、添加控制器:普通的js,可以进行测试, 前端:ng-controller ng-repeat 其他就相当于expre...
阅读全文
摘要:教程:http://www.tuicool.com/articles/vuiyIz
阅读全文
摘要:Unable to locate package错误解决办法 docker ubuntu12.04 mysql 找不到*.scok,进入不到mysql docker ubuntu14.04 mysql 安装成功 进入mysql的命令 mysql -uroot -p 导入数据库 mysql -uabc
阅读全文
摘要:参考别人的,自己改写了下,很好用。 Bootstrap 101 Template --> 测试一下
阅读全文
摘要:tar tar -zcvf file.tar.gz file1 file2; c:create 压缩 tar -ztvf file.tar.gz; t:list 查询 tar -zxvf file.tar.gz; x:extract 解压缩 zip 压缩与解压 sudo apt-get instal
阅读全文
摘要:在ubuntu下安装的apache, 很多配置文件都分开写了,需要了解一下各部分: http://blog.csdn.net/veizz/article/details/7410784 Ubuntu下安装和配置Apache2 这个写的很详细,以后用到的时候看下。 安装指令:sudo apt-get
阅读全文
摘要:官网上有安装方法。已安装成功。 容器千万不能随便删 现在已经不用boot2docker,使用dockertools来安装docker,dockertools中包含docker-machine,等等。 1、下载镜像 docker pull ubuntu:12.04 2、创建容器 docker run
阅读全文
摘要:原谅我的无知,之前学习express时,没想过需要错误处理。app.js也没认真看。现在做具体的项目时,需要考虑到出错的情况。其实有两种:1、nodejs是单线程,如果挂掉了,网站就会崩溃,需要pm2来守护这个单进程,这算是nodejs的错误处理2、express运行在nodejs上,排除掉第一种情...
阅读全文