摘要:
本篇关注AngularJS中的控制器继承,了解属性和方法是如何被继承的。嵌套控制器中属性是如何被继承的?==属性值是字符串myApp.controller("ParentCtrl", function($scope){ $scope.name = "darren";})myApp.contro... 阅读全文
摘要:
在AngularJS中,每一个controller都有对应的Scope,而Scope间有时候需要通讯。比如有如下的一个controller嵌套: ... {{$index + 1}} {{product.name}} ... 阅读全文
摘要:
本篇通过几个例子对AngularJS中的Directive进行汇总。例子1,单向绑定和双向绑定 ==单向绑定{{contacts.length}}the first name is {{contacts[0].firstname}}{{contacts[0].f... 阅读全文
摘要:
在ASP.NET Web API中实现缓存大致有2种思路。一种是通过ETag, 一种是通过类似ASP.NET MVC中的OutputCache。通过ETag实现缓存首先安装cachecow.serverinstall-package cachecow.server在WebApiConfig中。pub... 阅读全文
摘要:
有时候我们可能不想显示某个实体中的所有字段。比如客户端发出如下请求:locaohost:43321/api/groups/1/items?fields=idlocaohost:43321/api/groups/1/items?fields=id,name以上,对于Item这个类,我们可能只想显示id... 阅读全文