global.js 317 Bytes
const $ = require('yoho-jquery');

// 注册ajaxError处理服务端异常
$(document).ajaxError((event, xhr) => {
    if (xhr.responseJSON) {
        if (xhr.status === 510 && xhr.responseJSON.data && xhr.responseJSON.data.refer) {
            window.location.href = xhr.responseJSON.data.refer;
        }
    }
});