摘要: 总结 track by是angular1.2后新加入的。ng-repeat会为每一次元素加上一个hashkey $$hashKey来识别每一个元素,当我们从后端重新获取数据时,即使数据完全一样,但是由于hashKey不一样,angular会删除之前的所有dom,重新生成新的dom。这样效率就会大大降 阅读全文
posted @ 2018-05-15 19:56 zouminglan 阅读(1236) 评论(0) 推荐(0) 编辑
摘要: <input type="file" id="file{{$index}}" class="file{{$index}}" ngf-select ngf-change="cacScriptEditVm.views.uploadAttach($files)" multiple/> <div class 阅读全文
posted @ 2018-05-15 19:40 zouminglan 阅读(313) 评论(0) 推荐(0) 编辑
摘要: 1、解压hbase安装包 2、将大数据环境得hadoop安装包拷贝到windows(这里以d:/hadoop为例) 3、打开C:\Windows\System32\drivers\etc目录下的hosts并添加如下代码 127.0.0.1 localhost192.168.48.134 master 阅读全文
posted @ 2017-03-16 15:54 zouminglan 阅读(2583) 评论(0) 推荐(0) 编辑
摘要: 大数据集群本地安装方法 1、使用Vmware安装Linux系统 请自行下载,并安装。至少安装两台(这里以安装三台为例) 2、 安装xshell和xftp 安装xshell和xftp主要主要是方面后面传文件、写命令等操作。 (注意,xshell和xftp的版本一定要一致,不然安装xftp可能会有问题) 阅读全文
posted @ 2017-03-16 15:38 zouminglan 阅读(321) 评论(0) 推荐(0) 编辑
摘要: 勾选掉Autoscoll from Source 阅读全文
posted @ 2017-01-10 15:55 zouminglan 阅读(12733) 评论(0) 推荐(1) 编辑
摘要: 所需jar包如下,jar下载地址如下http://download.csdn.net/detail/zhouminglan1992/9730354 1、web.xml配置 2、测试类 3、访问路径 http://localhost:8080/servleToRestful/rest/UserInfo 阅读全文
posted @ 2017-01-06 10:57 zouminglan 阅读(3584) 评论(0) 推荐(0) 编辑
摘要: 这里需要用到插件ajaxfileupload.js,jar包:commons-fileupload-1.3.2.jar,commons-io-2.5.jar 注意红色部分的字!!!! 1、创建一个web工程,在配置web.xml 2、upload.jsp页面 3、后台代码FileUpload类 阅读全文
posted @ 2017-01-06 10:33 zouminglan 阅读(4579) 评论(0) 推荐(0) 编辑
摘要: $scope.selectAll = false; //点击单选框的时候是不是全选 $scope.checkIsAll = function(){ var wipeCheckBoxObj = $("input[name='wipeCheckBox']:checked"); if(wipeCheckBoxObj.length==$scope.dataLists.length)... 阅读全文
posted @ 2016-12-23 17:49 zouminglan 阅读(3539) 评论(0) 推荐(0) 编辑
摘要: maven 添加jar 阅读全文
posted @ 2016-12-22 16:24 zouminglan 阅读(1036) 评论(0) 推荐(0) 编辑
摘要: 1.将字符串转码:new String(“xxxxx”.getBytes("iso-8859-1"),"utf-8") 这种转码方式有很大的弊端,因为它是使用指定的字符集将此String 编码为 byte 序列,并将结果存储到一个新的 byte 数组中,然后通过使用指定的字符编码将生成的byte 数 阅读全文
posted @ 2016-12-14 21:04 zouminglan 阅读(9278) 评论(0) 推荐(1) 编辑