mongoDB add user in v3.0 问题的解决(Property 'addUser' of object admin is not a func)
#
问题:创建mongodb帐户时,出错
> db.addUser('jyu', 'aerohive')
2015-08-05T20:03:02.767+0800 E QUERY TypeError: Property '...
分类:
数据库 时间:
2015-08-05 22:27:04
阅读次数:
227
python 是个逐步迭代开发的过程,他不是向下兼容的,更不是向上兼容,版本不一致,好端端的程序就是不能运行了。下面是在python 2中能运行,在Python 3中不能运行的代码。其实也很简单。但是这些边边角角的东西着实让人头疼。>>> a=range(10)>>> arange(0, 10)>>...
分类:
其他好文 时间:
2015-08-05 22:03:42
阅读次数:
1547
问题:(删除tableview中的section时)
Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Invalid update: invalid number of sections. The number of sections contained in the...
分类:
其他好文 时间:
2015-08-05 18:24:41
阅读次数:
454
今天在写一个javascript demo的时候,为了一个小问题搞了好久,而且代码就是如下: ?? var start?? = document.getElementById(‘start‘); ?start.onclick = function(){ ??? ........... }; 之后报了这样...
分类:
编程语言 时间:
2015-08-01 13:02:48
阅读次数:
544
使用xcode6.1创建的项目, 添加新浪SDK,运行[WeiboSDKregisterApp:kAppKey];这一步崩溃,抛出以下*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason:...
分类:
其他好文 时间:
2015-07-31 10:25:04
阅读次数:
311
异常信息如下:07-26 17:23:49.521: W/dalvikvm(29229): threadid=1: thread exiting with uncaught exception (group=0x40db8930) 出现这种情况,有可能是View,在Activity中强制类型转换的....
分类:
数据库 时间:
2015-07-28 20:16:47
阅读次数:
209
当 [searchDisplayController.searchResultsTableView setSeparatorStyle:UITableViewCellSeparatorStyleNone] 时, 发送了崩溃错误提示如下:Terminating app due to uncaught ...
分类:
编程语言 时间:
2015-07-27 13:02:29
阅读次数:
138
jQuery报错:Uncaught ReferenceError: $ is not defined在使用jQuery的时候,发现有如下报错:Uncaught ReferenceError: $ is not defined (anonymous function)出现这个报错的原因:1.jQuer...
分类:
Web程序 时间:
2015-07-23 17:28:54
阅读次数:
127
利用pymongo包进行数据库的连接 使用xlrd包读取excel数据,由于二者数据结构的不同,要将excel格式数据转换为json格式数据 由于编码问题会出现“TypeError: ‘str‘ object does not support item assignment” 要利...
分类:
数据库 时间:
2015-07-22 14:54:54
阅读次数:
194
python解析json字符串和json文件的区别:利用Python的json库解析json格式的数据时,如果是json格式的字符串,使用json.loads(str);如果是json文件,使用json.load(f)。如果使用json.loads()解析文件,会出现TypeError: expec...
分类:
编程语言 时间:
2015-07-21 20:17:49
阅读次数:
126