RT后端java前端Vue
6 回答
德玛西亚99
TA贡献1770条经验 获得超3个赞
非常感谢大家,问题已解决,来说一下我的做法,因为服务器大小有限,没办法做Websocket,而且想可以随意操作是否出现维护页面,所以在服务器前端根目录下放置了一个json文件,这个json文件当作配置文件,可以配置是否维护,维护的时间段,维护页面显示的内容,然后通过前端请求读取来判断,也是一个没有办法的办法吧
呼唤远方
TA贡献1856条经验 获得超11个赞
最开始的那个 GET
请求,由后端处理。你后端想显示什么就显示什么啊。
如果是中间,不确定的“意外”,那显示些什么,是前端的功能的一部分,叫前端去做就完了。
慕森王
TA贡献1777条经验 获得超3个赞
如果是使用axios做交互插件,可以尝试做以下配置
this.$http.get(url, data, config)
.then(res => {
// success
})
.catch((err) => {
// fail
if (err.response) {
// The request was made and the server responded with a status code
// that falls out of the range of 2xx
// 出现状态码为2xx以外的时候运行
} else if (err.request) {
// The request was made but no response was received
// `error.request` is an instance of XMLHttpRequest in the browser and an instance of
// http.ClientRequest in node.js
// 这个虽然官方说是没有响应的时候运行的,但是我实际测试没试出来过
} else {
// Something happened in setting up the request that triggered an Error
}
console.log(error.config);
})
前端可以根据后台返回的状态码进行一个判断,出现特定状态码就跳转至维护页面
添加回答
举报
0/150
提交
取消