
Http
Ethan0396
这个作者很懒,什么都没留下…
展开
-
vue发送Http请求之axios
之前使用XMLHttpRequest,跨平台发送Http请求,出现一系列跨域问题,使用const that = this转内部,确实非常麻烦。 这里是使用vue的axios发送,相对简单,全段代码。 <template> <div> <AdjudicationLayer /> <!-- <mu-circular-progress v-if="loading" :size="40" /> --> <div ref="原创 2021-05-13 16:05:21 · 215 阅读 · 0 评论 -
常用完整Http请求返回状态码
/** * 返回状态码 * * @author rcxc */ public class HttpStatus{ /** * 操作成功 */ public static final int SUCCESS = 200; /** * 对象创建成功 */ public static final int CREATED = 201; /** * 请求已经被接受 */ public static原创 2020-11-10 14:59:21 · 466 阅读 · 0 评论