摘要: 阅读全文
posted @ 2018-02-25 13:27 fight139 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 常量名 常量值 说明 struts.i18n.encoding UTF-8 应用中使用的编码 struts.objectFactory.spring.autoWire name 和spring框架整合有关 struts.multipart.parser jakarta 指定文件上传用的组件 stru 阅读全文
posted @ 2018-02-25 13:26 fight139 阅读(101) 评论(0) 推荐(0) 编辑
摘要: 1.基本jar包 阅读全文
posted @ 2018-02-24 20:16 fight139 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 1.导出多个函数 fn.js module.exports = { fun1:function(){}, fun2:function(){} } 2.调用函数 var fun = require('./fn') fun.fun1() 或 fun['fun1']() fun.fun2() 阅读全文
posted @ 2018-01-07 22:48 fight139 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 1.node.js的优点 性能高 开发效率高 应用范围广 2.安装 下载地址:http://nodejs.cn 下载git 3.框架选择 express(成熟),koa,Hapi 阅读全文
posted @ 2018-01-07 19:43 fight139 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 1.前端 (1)依赖文件: (2)HTML (3)js <script type="text/javascript"> //文件名不能相同 $(function () { $("#uploader").plupload({ // General settings runtimes: 'gears,f 阅读全文
posted @ 2018-01-03 09:03 fight139 阅读(360) 评论(0) 推荐(0) 编辑
摘要: 就是通过建立类型为List<Lodging>的Lodging属性与炻Destination建立了联系。 public class Destination { public int DestinationId { get; set; } public string Name { get; set; } 阅读全文
posted @ 2017-12-21 16:34 fight139 阅读(208) 评论(0) 推荐(0) 编辑
摘要: 1.在Code First中使用属性 Length字长 字长用于描述数组的长度。包括对字符串和byte数组。 Code First的默认规则string 或者byte数组的长度应为最大。根据不同的数据库类型确定在数据库最终的类型。对SQL Server而言,string 会生成nvarchar(ma 阅读全文
posted @ 2017-12-21 15:09 fight139 阅读(308) 评论(0) 推荐(0) 编辑
摘要: 注意:Annotation特性标记可组合使用,也就是在一个类或属性上可以附加多个annotations特性 一、常用注解和对应的Fluent API 1.[Required] -->not null Property(t=>t.Name).IsRequired(); //Fluent API 2.[ 阅读全文
posted @ 2017-12-21 10:58 fight139 阅读(781) 评论(0) 推荐(0) 编辑
摘要: 1.use Master 2.创建数据库 3.修改数据库 (扩大数据库) 阅读全文
posted @ 2017-12-20 13:59 fight139 阅读(193) 评论(0) 推荐(0) 编辑
摘要: 1.Fluent API配置Model试用行更广 2.使用方法: 注意:在普通项目中,必须显示添加该配置 在MVC中,会自动添加 3.一对一关系配置 阅读全文
posted @ 2017-12-18 13:53 fight139 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 1.引入必要的文件 <link href="~/Content/easyui/themes/default/easyui.css" rel="stylesheet" /><link href="~/Content/easyui/themes/icon.css" rel="stylesheet" /> 阅读全文
posted @ 2017-12-11 15:07 fight139 阅读(182) 评论(0) 推荐(0) 编辑
摘要: <!-- 基于annotation的配置 --> <mapping class="com.xiaoluo.bean.User"/> <!-- 基于hbm.xml配置文件 --> <mapping resource="com/xiaoluo/bean/User.hbm.xml"/> 阅读全文
posted @ 2017-12-06 21:12 fight139 阅读(166) 评论(0) 推荐(0) 编辑
摘要: 1.form 2.js 让表单(form)成为 ajax 提交的表单(form) 去做一个提交动作 通过额外的参数提交 http://www.jeasyui.net/plugins/166.html 阅读全文
posted @ 2017-12-05 10:00 fight139 阅读(294) 评论(0) 推荐(0) 编辑
摘要: MyContext db = new MyContext(); var stus = db.Students.Where(s => true).OrderBy(s => s.StudentId).Skip(5).Take(5); 阅读全文
posted @ 2017-12-04 14:55 fight139 阅读(106) 评论(0) 推荐(0) 编辑