global.js 803 Bytes
/**
 * 全局引用js
 * @author: feng.chen<feng.chen@yoho.cn>
 * @date: 2017/03/15
 */
const $ = require('yoho-jquery');
const cookie = require('yoho-cookie');
const tip = require('plugin/tip');
const yoho = require('./yoho-app');

// 初始化

// 注册ajaxError处理服务端401状态
$(document).ajaxError((event, xhr) => {
    if (xhr.status === 401) {
        if (xhr.responseJSON && xhr.responseJSON.lowVersion) {
            tip.show(xhr.responseJSON.message);
        } else {
            cookie.remove('_UID');
            cookie.remove('_TOKEN');

            if (yoho.isApp) {
                yoho.goLogin(window.location.href);
            } else {
                window.location.href = `/signin.html?refer=${encodeURIComponent(window.location.href)}`;
            }
        }
    }
});