1、错误描述
五月 28, 2014 10:32:40 下午 freemarker.log.JDK14LoggerFactory$JDK14Logger error
严重: Template processing error: "Expression student.course is undefined on line 16, column 25 in course.ftl."
Expres...
分类:
其他好文 时间:
2014-06-05 09:14:11
阅读次数:
185
1、错误描述
五月 28, 2014 9:56:48 下午 freemarker.log.JDK14LoggerFactory$JDK14Logger error
严重: Template processing error: "Expression student.course is undefined on line 15, column 24 in course.ftl."
Express...
分类:
其他好文 时间:
2014-06-05 07:35:59
阅读次数:
348
undefined reference to `__aeabi_uidivmod'和undefined reference to `__aeabi_uidiv' 这是一个很常见的问题 解决办法一直都是比较复杂 这里给出问题出现的额原因和两种解决方法 推荐第一种解决方法 uboot最好不连接库...
分类:
其他好文 时间:
2014-06-05 02:48:20
阅读次数:
396
ASP.NET回发数据是通过函数__doPostBack来实现的,该函数在添加了服务端控件,并将AutoPostBack设置为true之后,将自动生成,具体可以参看下面的图。
同时还会生成隐藏控件,其ID为__EVENTTARGET和__EVENTARGUMENT,前一个是用于存放key的,后一个用于存放参数的。
所以在后台通过Request.Form来获取所要...
分类:
Web程序 时间:
2014-06-05 01:46:00
阅读次数:
324
缺少libz.dylib库的时候引起的一个链接错误
Undefined symbols for architecture armv7s:
"_inflate", referenced from:
-[ASIDataDecompressor uncompressBytes:length:error:] in ASIDataDecompressor.o
"_deflate", refere...
分类:
其他好文 时间:
2014-06-05 00:09:02
阅读次数:
267
js判断undefined类型今天使用showModalDialog打开页面,返回值时。当打开的页面点击关闭按钮或直接点浏览器上的关闭则返回值是undefined
所以自作聪明判断 var reValue=window.showModalDialog("","",""); if (reValue==...
分类:
Web程序 时间:
2014-06-03 07:21:07
阅读次数:
279
1.js文件封装的几个js工具
//兼容ie
if (typeof JSON == 'undefined') {
$("head").append($(""));
}
/**
* 工具对象,包括所有的公共方法。
*/
var giftShopTool = {
dialogId : "giftDialog",
jsloadArray : [],
// 关闭同意弹窗
closeHDdi...
分类:
Web程序 时间:
2014-06-03 03:52:07
阅读次数:
382
cocos2dx 2.2.3 xcode5.0,新建mac项目报错
Undefined symbols for architecture x86_64:
"cocos2d::extension::LabelReader::createInstance()", referenced from:
cocos2d::extension::GUIRead...
分类:
其他好文 时间:
2014-06-02 23:07:31
阅读次数:
307
1、高级函数 1.1 安全的类型检测 typeof 操作符,对一个值使用可能返回下列某个字符串
undefined, boolean, string, number, object, function null 也返回 ob...
分类:
Web程序 时间:
2014-05-31 19:19:18
阅读次数:
361
作者:zccst首先定义一个数组如果var a =
[1,2,3,4,5];比如要求删除第一个元素,即期望删除后变成[1,3,4,5],当然要求不使用系统函数delete a[1]; //不符合需求 [1,
undefined, 3, 4, 5]a[1] = null; //不符合需求 [1, nu...
分类:
其他好文 时间:
2014-05-31 05:53:49
阅读次数:
236