`
只是随手瞎打
  • 浏览: 28022 次
  • 性别: Icon_minigender_1
  • 来自: 厦门
社区版块
存档分类
最新评论
文章列表
Nginx下载 http://www.nginx.cn/nginx-download 参考资料 http://www.cnblogs.com/renjing/p/6394725.html 通过下面配置文件实现了一个简单的前端项目访问后端接口的跨域问题 nginx.conf配置文件 #user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid ...
项目结构 pom.xml <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven ...
参考资料: element http://element.eleme.io/#/zh-CN/component/installation vuerouter https://router.vuejs.org/zh-cn/ vue构建单页面应用实战 http://www.jb51.net/article/110796.html main.js import Vue from 'vue'; import App from './App'; import ElementUI from 'element-ui' import 'element-ui/lib/theme-default/ind ...
慕课网上的 vue.js入门基础: http://www.imooc.com/learn/694 使用vue2.0实现购物车和地址选配功能 http://www.imooc.com/learn/796
安装: https://cn.vuejs.org/v2/guide/installation.html 有各种安装选择,我选择的是用官方的命令行工具 http://www.runoob.com/vue2/vue-directory-structure.html 上面是vue.js的目录结构 我用的IDE是webstorm webstorm启动项目 http://blog.csdn.net/nero__a/article/details/62228646 以上亲测可用 不过要注意的是可能webstorm无法识别.vue文件,需要下载插件 如下图
function search() { table = $('#table') .dataTable( { searching : false, bLengthChange : false, paging : true, ordering : false, bFilter : true, info : true, bDestroy : true, iDisplayLength : 20, sPaginationType ...
<result name="planShow" type="redirectAction"> <param name="actionName">hcjhcxAction</param> <param name="method">init</param> </result>

ztree 基本应用

参考资料: http://www.treejs.cn/v3/main.php#_zTreeInfo <ul id="treeDemo2" class="ztree"></ul> zTreeObj2 = $.fn.zTree.init($("#treeDemo2"), setting2, zNodes); var zNodes = ${hrJson}; var setting2 = { view: { selectedMulti: false }, ...
参考资料: http://bootstrap-table.wenzhixin.net.cn/zh-cn/documentation/ <table data-toggle="table" id="table" data-toolbar="#toolbar" data-single-select="true" data-click-to-select="true"> ...
spring @Repository用于标注数据访问组件,即DAO组件; @Qualifier("userServiceImpl")   Spring会找到id为userServiceImpl的bean进行装配。 @Service("service")用于标注业务层组件 service别名 @Autowired 默认按类型装配(这个注解是属业spring的),默认情况下必须要求依赖对象必须存在,如果要允许null值,可以设置它的required属性为false,如:@Autowired(required=false) 如果我们想使用名称装配可以结合@Q ...
因为现在在做的项目,客户明确要求需要国际化,在网上查找了很多资料,特此记录下来 http://www.cnblogs.com/lihuiyy/archive/2013/03/14/2958782.html 需要注意的是貌似直接在资源文件写中文是没有用的,要通过native2ascii将中文转换下编码 具体看 http://blog.csdn.net/flm_0722/article/details/5159988 这样就妥了。 然后再页面上我是用<s:text name="资源文件的KEY值"/>来输出文本的 紧紧是页面上国际化是不够,JS中有很多提示, ...
insert into table(c1,c2) select c1,c2 from dual union all select c1,c2 from dual
decode() : decode(column,'0'.'男','1','女','未知') 当column值为0时转变成男,为1时成女,其他值为未知 没记错的话是这样。。。。 nvl() :nvl(colunmn,1) column为null时,值为1 floor() : floor(3.14) 返回3,向下取整,去掉小数 to_date(): to_char()

split无法分割('.')

    博客分类:
  • java
需转义('//.')
一个小例子 $("[name='datetimepicker']").datetimepicker({ format: "hh:ii", //日期格式 autoclose: true, //当选择一个日期之后是否立即关闭此日期时间选择器。 //showMeridian:true, 出现AM,PM // todayBtn: true, //是否出现today按钮 minView:'hour', //日期时间选择器所能够提供的最精确的时间选择视图 ...
Global site tag (gtag.js) - Google Analytics