function inherit(p){ if (p == null) throw TypeError(); //p是一个对象,但不能是null if (Object.create) //如果Object.create()存在 re...
分类:
其他好文 时间:
2014-11-17 12:14:02
阅读次数:
164
刚接触iOS,按照教程操作运行出现错误
Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'unable to dequeue a cell with identifier Cell - must register a nib or a class for the ident...
分类:
移动开发 时间:
2014-11-13 12:59:59
阅读次数:
311
function inherit(p){ if(p==null){ throw TypeError(); } if(Object.create){ return Object.create(p); } var t=typeof p; if(t!=='object'&&t!==...
分类:
其他好文 时间:
2014-11-07 19:01:59
阅读次数:
182
遇到了这个问题,很久没找到答案,后来使用了万能的google,貌似也没找到答案.详细描述下:通过使用 $(".select")来选择jqeury对象,没问题.通过$(".select").find(".ccc") 也没问题通过$(".select").find(".ccc div") 或者 $("s...
分类:
其他好文 时间:
2014-11-05 16:50:48
阅读次数:
147
import socketimport sysport=51423host="localhost"data=b"x"*10485760 #在字符串前加 b 是字符串变为bytes类。sock=socket.socket(socket.AF_INET,sock...
分类:
编程语言 时间:
2014-11-04 12:43:11
阅读次数:
525
使用requireJS加载模块的时候,有时候会碰到如下的错误:
Uncaught Error: Module name "module1" has not been loaded yet for context: _. Use require([])。可以看到使用define()定义模块的时候,如果依赖的模块比较少,那么可以使用标准方式;如果依赖的模块很多,那么可以使用方式1或者方式2来解决。很显然,使用require()加载模块的时候,也存在和define()一样的问题。经过我的试验:使用方式2也是可以的...
分类:
Web程序 时间:
2014-11-02 18:16:05
阅读次数:
1383
单独写一个html发现一切没有问题,但放在自己的网页中作为一部分却出现了问题,最后发现是那些js文件引入顺序出现了问题,将图示画红线的放到最下面问题解决,原因不详
分类:
Web程序 时间:
2014-10-30 10:18:29
阅读次数:
1044
Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Could not load NIB in bundle: 'NSBundle </Users/newmac/Library/Developer/CoreSimulator/Devices/6BCFEB99-13E5-4550-9623-D009C0AC7637/data/Containers/Bundle/Application/1E...
分类:
移动开发 时间:
2014-10-29 14:54:46
阅读次数:
219
1、错误原因
TypeError: Error #1006: value 不是函数。
at BasicChart/dataFunc()[E:\Flash Builder\Map\src\BasicChart.mxml:68]
at mx.charts.chartClasses::Series/cacheDefaultValues()[E:\dev\4.0.0\frameworks\proje...
分类:
其他好文 时间:
2014-10-25 23:06:25
阅读次数:
622
1、错误描述
TypeError: Error #1034: 强制转换类型失败:无法将 "0.49" 转换为 mx.graphics.IFill。
at mx.charts.series::LineSeries/updateDisplayList()[E:\dev\4.0.0\frameworks\projects\datavisualization\src\mx\charts\series\...
分类:
其他好文 时间:
2014-10-25 21:32:28
阅读次数:
267