
Python
垂天丶翼
云游书海中,不知流霞漫天,归去处,月色朦胧。(▼へ▼メ)
展开
-
python WSGI 解决跨域问题
import json from wsgiref.simple_server import make_server # application()函数是Python中符合WSGI标准的一个HTTP处理函数,返回是一个字符串 def application(environ, start_response): # start_response 如下调用就会发送HTTP响应的Header,注...原创 2019-06-06 17:31:08 · 1155 阅读 · 0 评论 -
sqlalchemy + mysql 反向模糊查询
MYSQL反向模糊查询 转载自:https://blog.youkuaiyun.com/yangfengjueqi/article/details/79814560 平时开发中,常用一些模糊查询,例如查询表格user中uname包含“塔”的数据,可以使用如下三种方式: select * from user where uname like '%塔%'; select * from user where...原创 2019-08-26 17:13:23 · 828 阅读 · 1 评论