上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 26 下一页

linux 路由

摘要: 阅读全文
posted @ 2016-11-17 21:51 rigidwang 阅读(122) 评论(0) 推荐(0)

centos iptables

摘要: 1.查看本机关于IPTABLES的设置情况iptables -L -niptables --listmore /etc/sysconfig/iptablesservice iptables status #查看状态 2.清除原有规则iptables -Fiptables -X 保存规则/etc/rc 阅读全文
posted @ 2016-11-17 15:13 rigidwang 阅读(145) 评论(0) 推荐(0)

angular 数据绑定

摘要: 1.ng-band 使用在index.html页面使用,该页面不要直接使用双花括号,否则网络延迟的时候页面会显示双花括号,由于通常只在index.html里导入angular.js,所以在其他模板页面可以直接使用双花括号进行数据输出 2. 阅读全文
posted @ 2016-11-15 19:40 rigidwang 阅读(178) 评论(0) 推荐(0)

angular路由 模块 依赖注入

摘要: 1.模块 完整的项目结构 2.路由 controller利用模板来生成视图 3.依赖注入 ng开头的是angular自身提供的模块, 阅读全文
posted @ 2016-11-15 14:48 rigidwang 阅读(395) 评论(0) 推荐(0)

angular $scope对象

摘要: $scope是一个pojo对象 $scope提供了一些工具方法。例如:$watch() $apply(),一般不会手工去调用 $scope是表达式的执行环境也叫作用域 $scope是一个树形结构,与DOM标签平行 子$scope对象会继承父$scope上的属性和方法 每一个angular应用只有一个 阅读全文
posted @ 2016-11-15 14:08 rigidwang 阅读(357) 评论(0) 推荐(0)

angular前端开发环境

摘要: 1.代码编辑工具 webstorm 2.断点调试工具 chrome插件Batarang 3.版本管理工具 git(仅仅是命令行工具) git小乌龟--tortoisegit(图形化工具) 首先在git的开源项目上fork一个 自己的分支,然后在右下角复制url链接。然后在本地进行git clone 阅读全文
posted @ 2016-11-14 21:39 rigidwang 阅读(158) 评论(0) 推荐(0)

maven 依赖

摘要: 依赖排除 当一个项目A依赖项目B,而项目B同时依赖项目C,如果项目A中因为各种原因不想引用项目C,在配置项目B的依赖时,可以排除对C的依赖。 示例(假设配置的是A的pom.xml,依赖关系为:A --> B; B --> C) 阅读全文
posted @ 2016-11-09 22:27 rigidwang 阅读(227) 评论(0) 推荐(0)

maven settings.xml 阿里云

摘要: <?xml version="1.0" encoding="UTF-8"?> <!--Licensed to the Apache Software Foundation (ASF) under oneor more contributor license agreements. See the N 阅读全文
posted @ 2016-11-09 11:54 rigidwang 阅读(340) 评论(0) 推荐(0)

前后端分离结构设计

摘要: http://chuna2.787528.xyz/sharpxiajun/archive/2013/05/11/3072798.html 阅读全文
posted @ 2016-10-25 21:35 rigidwang 阅读(166) 评论(0) 推荐(0)

IE8兼容H5语义标签

摘要: //IE浏览器定义的特殊属性,通过hack方式判断IE版本来执行不同的代码,IE8以下浏览器自动创建html5语义标签,从而实现兼容<!--[if lte IE 8] <script src=./js/html5shiv.min.js></script><![endif]--> 阅读全文
posted @ 2016-10-25 12:50 rigidwang 阅读(270) 评论(0) 推荐(0)
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 26 下一页