摘要: https://blog.csdn.net/liuweiyuxiang/article/details/71104613 def search(request): searchtype = request.POST.get("searchtype") keyword = request.POST.g 阅读全文
posted @ 2018-10-31 23:24 CrossPython 阅读(619) 评论(0) 推荐(0) 编辑
摘要: result = session.execute('insert into ***') session.commit() last_insert_id = result.lastrowid 注意:如果存在多个用户操作数据库,应保持每个用户或者每个请求线程拥有各自隔离的session https:// 阅读全文
posted @ 2018-10-31 23:14 CrossPython 阅读(2648) 评论(0) 推荐(0) 编辑
摘要: models execute via view: 阅读全文
posted @ 2018-10-31 22:52 CrossPython 阅读(1182) 评论(0) 推荐(0) 编辑
摘要: gg:命令将光标移动到文档开头G:命令将光标移动到文档末尾 vi编辑器中在命令行模式下输入G可以直接跳转到页面的底部 在命令行模式下输入1G可以跳转到页面的头部位置 更多在vi中移动编辑位置的命令说明如下: h Move left j Move down k Move up l Move right 阅读全文
posted @ 2018-10-31 16:36 CrossPython 阅读(5882) 评论(0) 推荐(0) 编辑
摘要: centos7中的防火墙改成了firewall,使用iptables无作用,开放端口的方法如下: firewall-cmd --zone=public --add-port=80/tcp --permanent 返回success为成功 命令含义: --zone #作用域 --add-port=80 阅读全文
posted @ 2018-10-31 10:11 CrossPython 阅读(484) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/yingshukun/article/details/53470424 https://my.oschina.net/auo/blog/222202 阅读全文
posted @ 2018-10-31 09:26 CrossPython 阅读(357) 评论(0) 推荐(0) 编辑
摘要: https://github.com/bukuai/Text-Translation-API-V3-Python https://docs.microsoft.com/zh-cn/azure/cognitive-services/translator/quickstart-python-transl 阅读全文
posted @ 2018-10-31 09:23 CrossPython 阅读(317) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/yingshukun/article/details/53470424 Google翻译实现 阅读全文
posted @ 2018-10-31 08:37 CrossPython 阅读(243) 评论(0) 推荐(0) 编辑