加载中
angular fileUploader 中文API

Directives(指令) nv-file-drop <!-- 最少配置 --> <elementnv-file-dropuploader="{FileUploader}"></element> <!-- 最多配置 --> <elementnv-file-dropuploader="{FileUploader}"options...

2017/10/31 19:59
1.8K
angularjs写自己的指令编译器

var app = angular.module('plunker', ['ngSanitize']); app.directive('toHtml', function() { return { restrict: 'A', link: function (scope, el, attrs) {       el.html(scope...

2017/10/20 17:45
81
Java基于代码实战的字符流父类、字符转换流、缓冲字符流、过滤流

1. Java输入输出(I/O)流的知识回顾: 补充:因为这篇文章是基于上一篇的延续,因此将上一篇进行简单的回顾,以便理解本节内容。 1)输入输出(I/O)流分类:共分为字节型输入输出流和字符型...

2017/10/20 14:11
622
Java并发源码之ReentrantLock

ReentrantLock介绍 ReentrantLock是一个可重入的互斥锁,与使用synchronized方法和语句访问的隐式监视锁具有相同的基本行为和语义,但具有扩展功能。ReentrantLock属于最后一个成功加锁并且还...

2017/10/20 14:09
95
除去字符串左侧空白符、右侧空白符、两侧空白符、所有空白符

去掉字符串左侧空白 去掉字符串右侧空白 推荐下我的前端群:524262608,不管你是小白还是大牛,小编我都挺欢迎,不定期分享干货,包括我自己整理的一份2017最新的前端资料和零基础入门教程,...

2017/10/20 14:07
67
JDK容器学习之CopyOnWriteArrayList:线程安全保障机制

JDK容器学习之CopyOnWriteArrayList 列表容器常见的有ArrayList和LinkedList,然而两者都是非线程安全的,若应用场景对线程安全有需求,则可以使用CopyOnWriteArrayList来代替传统的Vector ...

jdk
2017/10/20 14:05
112
Quartz的Scheduler初始化源码分析

Quartz的使用:http://donald-draper.iteye.com/blog/2321886 Quartz的Scheduler初始化源码分析:http://donald-draper.iteye.com/blog/2322730 Quartz的job、触发器的暂停与恢复源码分析:h...

2017/10/17 19:14
190
js对kv对象根据key排序

const unordered = { 'b': 'foo', 'c': 'bar', 'a': 'baz' }; console.log(JSON.stringify(unordered)); // → '{"b":"foo","c":"bar","a":"baz"}' const ordered = {}; Object.keys...

2017/10/16 16:28
6.2K
angularjs select optgroup

HTML: <div ng-app="app"> <div ng-controller="ParentCtrl"> <select ng-model="tipost" ng-options="tip.DESC group by tip.TIPIS for tip in tipall"><br> </select> </...

2017/10/13 19:17
143

没有更多内容

加载失败,请刷新页面

没有更多内容

返回顶部
顶部