摘要:
MySql 操作数据库 SHOW VARIABLES LIKE 'datadir'; # 查看数据目录show create table students \G # 查看sql语句SHOW ENGINES;SHOW VARIABLES LIKE 'default_storage_engine%' 阅读全文
摘要:
def update(req: django.http.HttpRequest): if req.method == "POST": print("has file") with open("f:/file", "wb") as f: print("get f") print(req.FILES) for i in req.FILES["file_name"].chunks(): f.write( 阅读全文