Last updated
Last updated
封装后端 HTTP 服务(作为代理转发)
单点登录认证,需要返回特定 HTTP 状态码服务
return 说明:
httpstatus: 状态码(200, 404, 302, 403 等) 是个数字
Content: 支持字节流或者字典
传字典时,会默认转为 json 并使用 utf-8 编码,("Content-Type", "application/json")
传字节流时,("Content-Type", "text/html")
headers: 响应头
(1) Content 传 json 时,将会被识别为 ("Content-Type", "text/html") ,前端服务是否会无法自动转为 js 对象?