openresty使用中的笔记
1.经过吃苦果才得到的结论
- lua-resty-mysql是支持事务的
- (2017.07.06更新)ajax post过来的json对象,用后面的两行代码获取,
获取到的post_args直接就是一个lua语言的table,不再需要cjson.decode(post_args)了ngx.req.read_body() local post_args = ngx.req.get_post_args()
2.openresty作为微信公众号的后台,踩坑记
(1)回调,出错
Resource interpreted as Document but transferred with MIME type application/octet-stream
- 原因是我自己的nginx.conf对应的location没有加default_type 'text/html'