AngularJS

分类下相关文章

filter in Angular

Being honest may not get you a lot of friends but it’ll always get you the right ones. filter 是什么 http://docs.angularjs.org/guide/filter A filter formats the value of an expression for display to the user. They can be used in view templates, controllers or services and it is easy to define your ow ...

阅读全文...

D3 with AngularJS

使用 dangle donut 反复报错的原因 Error: Multiple directives [fsDonut, fsDonut] asking for isolated scope on: 最终发现问题出在 js 文件的导入上: <script src="lib/dangle.donut.min.js"></script> 按照 http://www.fullscale.co/dangle/ 的说明, 实际上只需要一行就够了 <script src="lib/dangle.min.js"></s ...

阅读全文...

Angular Controller

controller 适合用来做什么 Set up the initial state of the $scope object. Add behavior to the $scope object. controller 的定义方法 推荐的方式 var myApp = angular.module('myApp',[]); myApp.controller('GreetingController', ['$scope', function($scope) { $scope.greeting = 'Hola!'; }]); 不推荐的方式 function GreetingCont ...

阅读全文...

angularjs

使用 AngularJS 写前端的节奏 初始化代码目录, angular-seed 按照设计,先把首页 index.html 完成 在 app/js/app.js 中规划 routing 如何访问后端的 RESTful 接口 使用 ngResource 而不是使用相对原始的 http 如何更好的理解 AngularJS 通过实际交互流程来理解 数据录入页 directives -> HTML 的扩展语义 (例如, ng-model, ng-controller, 以及自定义的) controller -> application behavior (例如,点击保存按钮对应 ...

阅读全文...