博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
《AngularJS开发下一代Web应用》读书笔记与感想
阅读量:6449 次
发布时间:2019-06-23

本文共 826 字,大约阅读时间需要 2 分钟。

 

该书一共130页打算四天读完,边读边记录。

1.

 

 

2.学习MogoDB

3.

4.

 5.

创建标识符的一段简单伪码模板: var myModule = angular.module(...);myModule.directive('namespaceDirectiveName', function factory(injectables) {	var directiveDefinitionObject = {		restrict: string, 		priority: number,		template: string, 		templateUrl: string, 		replace: bool, 		transclude: bool, 		scope: bool or object,		controller: function controllerConstructor($scope, $element, $attrs, $transclude),		require: string,		link: function postLink(scope, iElement, iAttrs) { ... }, 		compile: function compile(tElement, tAttrs, transclude) {			return {				pre: function preLink(scope, iElement, iAttrs, controller) { ... }, 				post: function postLink(scope, iElement, iAttrs, controller) { ... }			}		}	};	return directiveDefinitionObject;});

  

 

转载于:https://www.cnblogs.com/dyh-air/p/7751269.html

你可能感兴趣的文章
4Sum——LeetCode
查看>>
论程序员加班的害处
查看>>
codeblocks快捷键
查看>>
基于HTML5的WebGL设计汉诺塔3D游戏
查看>>
WPF资料链接
查看>>
过滤DataTable表中的重复数据
查看>>
Oracle数据库-trunc函数的用法
查看>>
prepare for travel 旅行准备
查看>>
再次更新
查看>>
perl杂记
查看>>
go语言安装使用
查看>>
iOS开发代理(委托)模式详解
查看>>
微服务学习笔记二:Eureka服务注册发现
查看>>
C# 获取编码
查看>>
mysql的数据类型int、bigint、smallint 和 tinyint取值范围
查看>>
利用网易获取所有股票数据
查看>>
HDOJ5015 233 Matrix(矩阵乘法加速递推)
查看>>
三种局域网扫描工具比较
查看>>
移动铁通宽带上网设置教程
查看>>
java中判断字符串中是否有中文字符
查看>>