今天拷贝一个开源项目到本项目中,出现: threadid=1: thread exiting with uncaught exception (group=0x417cce00)问题,原因是Manfest.xml中activity的Theme与Appliacation的Theme冲突,将activi ...
分类:
其他好文 时间:
2016-05-16 23:08:30
阅读次数:
276
通常在页面中要让某些内容点击后产生点击事件(非页面跳转)都会使用onclick,但是这样不适于需要传递参数的情况,于是写成直接调用JavaScript函数的方式:<a href=javascript:somefunction(args)>content</a>。注意,这么写是有问题的,问题就在于so ...
分类:
Web程序 时间:
2016-05-16 19:21:38
阅读次数:
277
*** Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<UIViewController 0x12b24d950> setValue:forUndefinedKey:]: this class ...
分类:
其他好文 时间:
2016-05-11 11:04:40
阅读次数:
126
FormData() 上传图片,转载请注明出处!!! 附: ajax错误 Uncaught TypeError: Illegal invocation (未捕获类型错误:非法调用) 这种错误可以参考:可能是应为 contentType: false,processData: false 没有加 检查 ...
分类:
Web程序 时间:
2016-05-09 15:49:24
阅读次数:
389
估计很多人用ExtJS6的时候,遇到过一种情况:开发的时候明明正常的,build之后运行就报了下面的错误
Uncaught TypeError: c is not a function
心里一万个草泥马奔腾:What the hell is this?(这TM什么JB玩意?)
其实根本原因是你忘记了requires某个类导致的。
比如你这样使用{ xtype: 'gridp...
分类:
Web程序 时间:
2016-05-06 12:18:23
阅读次数:
670
1.Uncaught ReferenceError: b is not defined——如 <script> var a; alert(b); </script>此时就会出现Uncaught ReferenceError: b is not defined的错误,未捕获ReferenceError ...
分类:
其他好文 时间:
2016-04-29 14:06:27
阅读次数:
128
在用使用Ext.encode(ExtObject)过程中抛出了如下错误: Uncaught RangeError: Maximum call stack size exceeded 实际上,不能用 Ext.encode 处理 Ext对象(比如Ext.Store),这是一个bug。当然,用该方法处理其 ...
分类:
Web程序 时间:
2016-04-22 13:29:55
阅读次数:
159
需要给你的PHP加一个PDO扩展打开PHP.INI 把extension=php_pdo.dll 前面的分号去掉 重启APACHE。extension=php_pdo_mysql.dll ...
分类:
数据库 时间:
2016-04-21 11:39:58
阅读次数:
241
今天学习vuejs,里面用到了es6的写法,遇到了一个很怪的问题,不知道有人遇到么。 安装的模块引用:import Vue from 'vue';(注意,Vue处没有{},如果加上这个就报错Uncaught TypeError: _vue.Vue is not a function) 自己写的模块, ...
分类:
其他好文 时间:
2016-04-19 00:28:08
阅读次数:
176
把php.ini中的 拓展mysqli.dll和pdo_mysql.dll前面分号都去掉也没用,mysql是5.5 apache2.4和php7都好使了,怎么也连不上mysql Fatal error: Uncaught Error: Call to undefined function mysqL ...
分类:
数据库 时间:
2016-04-16 23:08:43
阅读次数:
1678