`
hqlin007
  • 浏览: 10405 次
  • 性别: Icon_minigender_1
  • 来自: 厦门
社区版块
存档分类
最新评论
文章列表
1. data-value-primitive 属性 a.当data-value-primitive 为false(默认值),将选中项(item)赋给View-Model字段;  详见:http://docs.kendoui.com/getting-started/framework/mvvm/bindings/value#use-the-value-binding-with-a-select-whose-options-are-created-by-the-source-bindingUse the value binding with a select whose options ...
MySQL的数据迁移比较简单,但有几点一定要注意:   当启用InnoDB引擎,在my.ini中有一个配置项:innodb_log_file_size 必须保证移植前后这个配置值是相同的,不然服务无法启动 如果不知道这个值咋办呢,查看日志   InnoDB: Error: log file .\ib_logfile0 is of different size 0 359661568 bytes InnoDB: than specified in the .cnf file 0 56623104 bytes! 140525 17:21:20 [ERROR] Plugin 'In ...
如何在Model中使用自定义校验:   Birthday: { type: "date", validation: { custom: function(input) { // set the custom message input.attr("data-custom-msg", "Birthday cannot be in the future"); if (console != unde ...
1. 使用jackson进行反序列化,注意几点 1.1 格式:2014-05-17T04:23:45.254Z 这种格式是UTC标准格式,Z表示标准时区 如果使用jackson转为Date对象,根据中国的时区(GMT+8),时间会新增8个小时。 最终时间为:2014-05-17T12:23:45.254   1.2 格式:2014-05-17T04:23:45.254+0800 这种格式是UTC标准格式,+0800表示东八区 如果使用jackson转为Date对象,由于都处于东八区,时间不变 最终时间为:2014-05-17T04:23:45.254   1.3 格式: ...
问题一 错误描述: Oracle 10g java.lang.Exception: Exception in sending Request :: null   刚装完 Oracle 10g,然后,进行em后,界面出来了,但报了一个错: java.lang.Exception: Exception in sending Request :: null   以下是错误截图:   处理方法: ...
Global site tag (gtag.js) - Google Analytics