08 2016 档案
java中this 关键字的使用
摘要:在方法中定义使用的this关键字,它的值是当前对象的引用.也就是说你只能用它来调用属于当前对象的方法或者使用this处理方法中成员变量和局部变量重名的情况.而且,更为重要的是this和super都无法出现在static 修饰的方法中,static 修饰的方法是属于类的,该方法的调用者可能是一个类,而 阅读全文
posted @ 2016-08-15 15:51 wodo2008 阅读(125) 评论(0) 推荐(0)
kendo模板 Uncaught Error: Invalid template:' 报错
摘要:I was having a problem with a grid toolbar template because of a # in a hrefWorked out that I needed to excape the # with \\\ and not \\<script type=" 阅读全文
posted @ 2016-08-15 11:32 wodo2008 阅读(632) 评论(0) 推荐(0)
发前端项目
摘要:sh script/upload-tops-front.s 阅读全文
posted @ 2016-08-08 18:06 wodo2008 阅读(140) 评论(0) 推荐(0)
spring开发的总结
摘要:1,当出现无法创建bean,( Error creating bean with name 'fileUploadService': Injection of resource dependencies failed; nested exception is org.springframework. 阅读全文
posted @ 2016-08-05 09:27 wodo2008 阅读(122) 评论(0) 推荐(0)
html 中自动换行的实现方式
摘要:1,<div type="word-wrap: break-word;word-break:break-all;"> </div> 2, <div type="white-space:normal; width:200px;“> </div> 或 <div id="wrap">正常文字的换行(亚洲文 阅读全文
posted @ 2016-08-03 14:20 wodo2008 阅读(825) 评论(0) 推荐(0)