今天,遍历一个HashSet集合对象,想用链接绑定集合对象的值,通过POST方式提交到控制器。结果程序无反应,按F12键进入调试模式,谷歌总是提示Uncaught ReferenceError: is not defined这个错误。原来是虽然是传递的值,但是在函数传参的时候也要加引号,加上引号后....
分类:
其他好文 时间:
2015-05-07 00:40:25
阅读次数:
297
Uncaught TypeError: undefined is not a function解决...
分类:
Web程序 时间:
2015-05-05 22:03:28
阅读次数:
147
Uncaught SecurityError: Failed to execute 'getImageData' on 'CanvasRenderingContext2D': The canvas has been tainted by cross-origin data.
最近在自学html5 CSS3很推荐李刚的 这个书,今天在家里测试发现 canvas中的getImageData报错
...
分类:
其他好文 时间:
2015-05-04 22:10:40
阅读次数:
146
五一节太闲了,竟研究起这个来…需要软件Sublime TextASCII Generator步骤用ASCII Generator生成字符画,复制到js文件,直接console.info出来。当然不可能这么顺利的,会报错Uncaught SyntaxError: Unexpected token IL...
分类:
其他好文 时间:
2015-05-03 23:35:35
阅读次数:
246
FF中时不时报这个错, 就近段做项目来看, 一般是我通过 jquery获取form中的参数(或直接获取参数,并通过ajax进行异步请求的时候,如果有错,就抱该错误! 而对应的, 如果在 Google chrome中, 则会报: Uncaught SyntaxError: Unexpected ...
分类:
Web程序 时间:
2015-04-30 12:11:08
阅读次数:
341
如下图
解决此异常,只要在每个ec:table加上tableId就行,如tableId="table3",这样ec:table可以正确区分同名列,也不会报上面这种bug...
分类:
编程语言 时间:
2015-04-29 15:12:45
阅读次数:
237
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__NSCFNumber length]: unrecognized selector sent to instance 网上...
分类:
移动开发 时间:
2015-04-26 18:01:19
阅读次数:
399
问题:
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Application tried to present modally an active controller .'
解决:
判断controller是不是有presentedViewController
if ([U...
分类:
移动开发 时间:
2015-04-22 14:01:02
阅读次数:
521
self.model=[[DataModel alloc]init];
[self.model setValue:@"searph" forKey:@"stockName"];
[self.model setValue:@"10.0" forKey:@"price"];
[self.model addObserver:self forKeyPath:@"price" ...
分类:
移动开发 时间:
2015-04-20 18:32:29
阅读次数:
152
错误(cell.contact = self.contacts[indexPath.row])(报错语句)Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[UITableViewCell setContact:]: unrecognized selector sent to insta...
分类:
其他好文 时间:
2015-04-16 17:36:04
阅读次数:
131