nodejs成功连接到地图集,但是当我尝试控制台记录数据时,我得到了错误
class ACNType(type):
def __contains__(cls, item):
return True
class ACN(metaclass=ACNType):
# your other methods here
我期望一个json对象具有数据库的所有内容,但是,出现以下错误
from Bio import SeqIO
fasta=SeqIO.parse("fasta1.fasta","fasta")
seq_dict={}
for record in fasta:
seq_dict[record.id]=record.seq
#print (seq_dict)
for line in open("names","r"):
line=line.strip()
print(line)
for cle in seq_dict.keys():
print(cle)
答案 0 :(得分:1)
您正在使用异步方法find
来检索数据。仅在该方法完成执行并且执行回调函数时才记录数据。同时,最后一条client.close()
语句将在检索数据之前关闭连接。
尝试注释掉close语句或将其移入方法回调中。
答案 1 :(得分:0)
在 MongoDB Atlas Cluster>“安全性”选项卡
下,检查您的 IP地址是否为白色。