在用Eclipse编写Python代码时,如果代码或注释中包含中文,运行程序会出现SyntaxError: Non-ASCII character问题。解决方法:在代码的第一行添加# coding=utf-8即可解决问题。
分类:
编程语言 时间:
2014-10-09 21:13:47
阅读次数:
182
用json2.js 代替 json.js防止与jQuery的js冲突
1 s.toJSONString json.js:259
2 Object.toJSONString json.js:158
3 Uncaught RangeError: Maximum call stack siz...
分类:
Web程序 时间:
2014-10-08 17:49:25
阅读次数:
270
在新建一个 TableView 的时候, 程序出现如下错误:Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: '-[UITableViewController loadView]...
分类:
其他好文 时间:
2014-10-07 01:58:52
阅读次数:
454
在描述闭包的实现与用途前,需要了解以下一些知识点。 执行上下文(执行上下文环境) 1 console.log(a); //Uncaught ReferenceError: a is not defined 2 3 console.log(b); //undefined4 var ...
分类:
编程语言 时间:
2014-09-30 13:35:59
阅读次数:
220
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__NSCFConstantString size]: unrecognized selector sent to instance....
分类:
其他好文 时间:
2014-09-28 20:21:25
阅读次数:
176
Unexpected number(index)的错误用的json字符串如var jsonStr = "{1:'北京note备注信息',2:'上海note备注信息',3:'广东note备注信息',4:'深圳note备注信息4',5:'天津note备注信息5',6:'湖北note备注信息6',7:'重...
分类:
Web程序 时间:
2014-09-26 19:36:58
阅读次数:
455
-[__NSCFNumber length]: unrecognized selector sent to instance 0x1657c5c0
2014-09-24 14:47:39.170 StarShow[1948:60b] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason...
分类:
其他好文 时间:
2014-09-24 17:41:27
阅读次数:
149
如果json字符串中包含了换行符"\n",直接解析的话就会发生Uncaught SyntaxError: Unexpected token ILLEGAL 错误,很显然需要转换成"\\n",但是不能直接改成"\\n"不然本来不是换行也当成了换行,应该用正则表达式去做如下替换function say....
分类:
Web程序 时间:
2014-09-23 11:47:54
阅读次数:
401
Xcode提醒错误:-[__NSCFString absoluteURL]: unrecognized selector sent to instance 0x8c4d3a0*** Terminating app due to uncaught exception 'NSInvalidArgumen...
分类:
其他好文 时间:
2014-09-21 16:46:10
阅读次数:
444
1、变量遵循先声明再使用。console.log(b); b=123;代码运行结果:Uncaught ReferenceError: b is not defined2、方法内定义的局部变量外部不能访问。 function my(){ var a='hi'; } my(); console.log(...
分类:
编程语言 时间:
2014-09-19 22:16:46
阅读次数:
156