淘先锋技术网

首页 1 2 3 4 5 6 7

使用 QuerySet.bulk_create

createList=[]
for d in data:
    createList.append(OJB(*d))
OBJ.objects.bulk_create(createList)