随笔分类 -  Angular1

摘要:angular.module('app').filter('trustHtml', ($sce) => { return (html) => { if(typeof(html)=="object"){ return html; } return $sce.trustAsHtml(html||""); } }); request({'url'... 阅读全文
posted @ 2017-04-01 18:39 N1900 阅读(261) 评论(0) 推荐(0)
摘要:angular.module('app').directive('ScrollTrigger', () => { return { restrict: "A", link:function ($scope,$element,$attrs,$controller) { function debounce(fn, delay) { ... 阅读全文
posted @ 2017-03-15 13:40 N1900 阅读(4212) 评论(0) 推荐(0)