摘要:
用gitbash进入类似命令行的窗口 用命令 cd e:/learngit 进入该目录,然后在此目录下初始化$ git init, 于是该文件夹就成为了一个工作区,里面的.git文件就是版本库(repository) 在工作区中新建一个文件,比如XXX.txt文件 在txt中添加‘1111’文本,用 阅读全文
2016年4月17日
2016年1月26日
摘要:
.directive('mydir',function(){ return{ multiElement: true/false, priority: number, //default: 0 terminal: true/false, ... 阅读全文
2016年1月22日
摘要:
$scope:var myapp = angular.module('myapp', []); myapp .controller('parent', function ($scope,$timeout) { $scope.$broadcast('you');//已经发出广播 ... 阅读全文
2016年1月15日
摘要:
$injector: (When you request a service, the$injectoris responsible for finding the correctservice provider, instantiating it and then calling its$get... 阅读全文