第三方账号快速登录
未开启找回密码功能
用nginx怎么返回json格式或者文本格式的数据?其实很简单,如下代码: 1、返回文本格式 1 2 3 4 location ~ ^/get_text { default_type text/html; return 200 'hello world!'; } 2、返回json格式 1 2 3 4 location ~ ^/get_json { default_type application/json; return 20...