文章分类 -  AngularJS

摘要:一些需要记忆的知识点: 1、自定义指令: app.directive("nameDirective" , function(){ template: "" }); 2、app = angular.module("MyApp", []) 模块定义中,[]表示模块的依赖关系, 应该填写依赖模块的名字, 阅读全文
posted @ 2016-10-22 23:46 jason_LSZ