mirror of
https://github.com/unanmed/HumanBreak.git
synced 2025-01-31 23:29:27 +08:00
refactor: 优化 utils,弃用 api
This commit is contained in:
parent
8fc62e0e97
commit
eca62f5dd0
@ -25,35 +25,6 @@ function utils() {
|
|||||||
rightup: { x: 1, y: -1 },
|
rightup: { x: 1, y: -1 },
|
||||||
rightdown: { x: 1, y: 1 }
|
rightdown: { x: 1, y: 1 }
|
||||||
};
|
};
|
||||||
const tokenSplit = new Set([
|
|
||||||
' ',
|
|
||||||
'(',
|
|
||||||
')',
|
|
||||||
'<',
|
|
||||||
'>',
|
|
||||||
',',
|
|
||||||
'.',
|
|
||||||
'/',
|
|
||||||
"'",
|
|
||||||
'"',
|
|
||||||
'[',
|
|
||||||
']',
|
|
||||||
'{',
|
|
||||||
'}',
|
|
||||||
'-',
|
|
||||||
'+',
|
|
||||||
'=',
|
|
||||||
'!',
|
|
||||||
'`',
|
|
||||||
'~',
|
|
||||||
';',
|
|
||||||
':',
|
|
||||||
'&',
|
|
||||||
'*',
|
|
||||||
'^',
|
|
||||||
'|',
|
|
||||||
'%'
|
|
||||||
]);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
utils.prototype._init = function () {
|
utils.prototype._init = function () {
|
||||||
@ -187,11 +158,7 @@ utils.prototype.calValue = function (value, prefix) {
|
|||||||
utils.prototype.unshift = function (a, b) {
|
utils.prototype.unshift = function (a, b) {
|
||||||
if (!(a instanceof Array) || b == null) return;
|
if (!(a instanceof Array) || b == null) return;
|
||||||
if (b instanceof Array) {
|
if (b instanceof Array) {
|
||||||
core.clone(b)
|
a.unshift(...b);
|
||||||
.reverse()
|
|
||||||
.forEach(function (e) {
|
|
||||||
a.unshift(e);
|
|
||||||
});
|
|
||||||
} else a.unshift(b);
|
} else a.unshift(b);
|
||||||
return a;
|
return a;
|
||||||
};
|
};
|
||||||
@ -200,9 +167,7 @@ utils.prototype.unshift = function (a, b) {
|
|||||||
utils.prototype.push = function (a, b) {
|
utils.prototype.push = function (a, b) {
|
||||||
if (!(a instanceof Array) || b == null) return;
|
if (!(a instanceof Array) || b == null) return;
|
||||||
if (b instanceof Array) {
|
if (b instanceof Array) {
|
||||||
core.clone(b).forEach(function (e) {
|
a.push(...b);
|
||||||
a.push(e);
|
|
||||||
});
|
|
||||||
} else a.push(b);
|
} else a.push(b);
|
||||||
return a;
|
return a;
|
||||||
};
|
};
|
||||||
@ -471,16 +436,11 @@ utils.prototype.clone = function (data, filter, recursion) {
|
|||||||
}
|
}
|
||||||
// array
|
// array
|
||||||
if (data instanceof Array) {
|
if (data instanceof Array) {
|
||||||
var copy = [];
|
return data.map((v, i) => {
|
||||||
for (var i in data) {
|
if (!filter || filter(String(i), v)) {
|
||||||
if (!filter || filter(i, data[i]))
|
return this.clone(v, recursion ? filter : null, recursion);
|
||||||
copy[i] = core.clone(
|
}
|
||||||
data[i],
|
});
|
||||||
recursion ? filter : null,
|
|
||||||
recursion
|
|
||||||
);
|
|
||||||
}
|
|
||||||
return copy;
|
|
||||||
}
|
}
|
||||||
// 函数
|
// 函数
|
||||||
if (data instanceof Function) {
|
if (data instanceof Function) {
|
||||||
@ -489,13 +449,14 @@ utils.prototype.clone = function (data, filter, recursion) {
|
|||||||
// object
|
// object
|
||||||
if (data instanceof Object) {
|
if (data instanceof Object) {
|
||||||
var copy = {};
|
var copy = {};
|
||||||
for (var i in data) {
|
for (const [key, value] of Object.entries(data)) {
|
||||||
if (data.hasOwnProperty(i) && (!filter || filter(i, data[i])))
|
if (!filter || filter(key, value)) {
|
||||||
copy[i] = core.clone(
|
copy[key] = this.clone(
|
||||||
data[i],
|
value,
|
||||||
recursion ? filter : null,
|
recursion ? filter : null,
|
||||||
recursion
|
recursion
|
||||||
);
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return copy;
|
return copy;
|
||||||
}
|
}
|
||||||
@ -664,8 +625,7 @@ utils.prototype.arrayToRGB = function (color) {
|
|||||||
nowG = this.clamp(parseInt(color[1]), 0, 255),
|
nowG = this.clamp(parseInt(color[1]), 0, 255),
|
||||||
nowB = this.clamp(parseInt(color[2]), 0, 255);
|
nowB = this.clamp(parseInt(color[2]), 0, 255);
|
||||||
return (
|
return (
|
||||||
'#' +
|
'#' + ((nowR << 16) + (nowG << 8) + nowB).toString(16).padStart(6, '0')
|
||||||
((1 << 24) + (nowR << 16) + (nowG << 8) + nowB).toString(16).slice(1)
|
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -920,7 +880,7 @@ utils.prototype.subarray = function (a, b) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
utils.prototype.inArray = function (array, element) {
|
utils.prototype.inArray = function (array, element) {
|
||||||
return array instanceof Array && array.indexOf(element) >= 0;
|
return array instanceof Array && array.includes(element);
|
||||||
};
|
};
|
||||||
|
|
||||||
utils.prototype.clamp = function (x, a, b) {
|
utils.prototype.clamp = function (x, a, b) {
|
||||||
@ -935,32 +895,7 @@ utils.prototype.getCookie = function (name) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
////// 设置statusBar的innerHTML,会自动斜体和放缩,也可以增加自定义css //////
|
////// 设置statusBar的innerHTML,会自动斜体和放缩,也可以增加自定义css //////
|
||||||
utils.prototype.setStatusBarInnerHTML = function (name, value, css) {
|
utils.prototype.setStatusBarInnerHTML = function (name, value, css) {};
|
||||||
if (!core.statusBar[name]) return;
|
|
||||||
if (typeof value == 'number') value = this.formatBigNumber(value);
|
|
||||||
var italic = /^[-a-zA-Z0-9`~!@#$%^&*()_=+\[{\]}\\|;:'",<.>\/?]*$/.test(
|
|
||||||
value
|
|
||||||
);
|
|
||||||
var style = 'font-style: ' + (italic ? 'italic' : 'normal') + '; ';
|
|
||||||
style +=
|
|
||||||
'text-shadow: #000 1px 0 0, #000 0 1px 0, #000 -1px 0 0, #000 0 -1px 0; ';
|
|
||||||
// 判定是否需要缩放
|
|
||||||
var length = this.strlen(value) || 1;
|
|
||||||
style += 'font-size: ' + Math.min(1, 7 / length) + 'em; ';
|
|
||||||
if (css) style += css;
|
|
||||||
var _style = core.statusBar[name].getAttribute('_style');
|
|
||||||
var _value = core.statusBar[name].getAttribute('_value');
|
|
||||||
if (_style == style) {
|
|
||||||
if (value == _value) return;
|
|
||||||
core.statusBar[name].children[0].innerText = value;
|
|
||||||
} else {
|
|
||||||
core.statusBar[name].innerHTML =
|
|
||||||
"<span class='_status' style='" + style + "'></span>";
|
|
||||||
core.statusBar[name].children[0].innerText = value;
|
|
||||||
core.statusBar[name].setAttribute('_style', style);
|
|
||||||
}
|
|
||||||
core.statusBar[name].setAttribute('_value', value);
|
|
||||||
};
|
|
||||||
|
|
||||||
utils.prototype.strlen = function (str) {
|
utils.prototype.strlen = function (str) {
|
||||||
var count = 0;
|
var count = 0;
|
||||||
|
51
src/types/util.d.ts
vendored
51
src/types/util.d.ts
vendored
@ -1,11 +1,13 @@
|
|||||||
/** 工具类 主要用来进行一些辅助函数的计算 */
|
/** 工具类 主要用来进行一些辅助函数的计算 */
|
||||||
interface Utils {
|
interface Utils {
|
||||||
/**
|
/**
|
||||||
|
* @deprecated
|
||||||
* 四个方向的坐标增量
|
* 四个方向的坐标增量
|
||||||
*/
|
*/
|
||||||
readonly scan: DeepReadonly<Scan>;
|
readonly scan: DeepReadonly<Scan>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @deprecated
|
||||||
* 八个方向的坐标增量
|
* 八个方向的坐标增量
|
||||||
*/
|
*/
|
||||||
readonly scan2: DeepReadonly<Scan2>;
|
readonly scan2: DeepReadonly<Scan2>;
|
||||||
@ -65,6 +67,7 @@ interface Utils {
|
|||||||
push<A extends any[], B extends any[]>(a: A, b: B): [...A, ...B];
|
push<A extends any[], B extends any[]>(a: A, b: B): [...A, ...B];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @deprecated
|
||||||
* 解压缩一个数据,我也不知道这个解压的是什么
|
* 解压缩一个数据,我也不知道这个解压的是什么
|
||||||
* @param 要解压的内容,字符串
|
* @param 要解压的内容,字符串
|
||||||
*/
|
*/
|
||||||
@ -94,6 +97,7 @@ interface Utils {
|
|||||||
removeLocalStorage(key: string): void;
|
removeLocalStorage(key: string): void;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @deprecated
|
||||||
* 异步写入localforage
|
* 异步写入localforage
|
||||||
* @param key 写入的键
|
* @param key 写入的键
|
||||||
* @param value 写入的值
|
* @param value 写入的值
|
||||||
@ -108,6 +112,7 @@ interface Utils {
|
|||||||
): void;
|
): void;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @deprecated
|
||||||
* 从localforage读出一段数据
|
* 从localforage读出一段数据
|
||||||
*/
|
*/
|
||||||
getLocalForage<T>(
|
getLocalForage<T>(
|
||||||
@ -118,6 +123,7 @@ interface Utils {
|
|||||||
): void;
|
): void;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @deprecated
|
||||||
* 移除localforage的数据
|
* 移除localforage的数据
|
||||||
*/
|
*/
|
||||||
removeLocalForage(
|
removeLocalForage(
|
||||||
@ -127,12 +133,14 @@ interface Utils {
|
|||||||
): void;
|
): void;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @deprecated
|
||||||
* 清除localforage所有的数据
|
* 清除localforage所有的数据
|
||||||
* @param callback 清除完毕的回调函数
|
* @param callback 清除完毕的回调函数
|
||||||
*/
|
*/
|
||||||
clearLocalForage(callback?: (err?: Error) => void): void;
|
clearLocalForage(callback?: (err?: Error) => void): void;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @deprecated
|
||||||
* 迭代localforage的数据
|
* 迭代localforage的数据
|
||||||
* @param iteratee 迭代器
|
* @param iteratee 迭代器
|
||||||
* @param callback 迭代完毕的回调函数
|
* @param callback 迭代完毕的回调函数
|
||||||
@ -143,12 +151,14 @@ interface Utils {
|
|||||||
): void;
|
): void;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @deprecated
|
||||||
* 获取localforage数据的所有的键
|
* 获取localforage数据的所有的键
|
||||||
* @param callback 回调函数
|
* @param callback 回调函数
|
||||||
*/
|
*/
|
||||||
keysLocalForage(callback?: (err: any, keys: string[]) => void): void;
|
keysLocalForage(callback?: (err: any, keys: string[]) => void): void;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @deprecated
|
||||||
* 获取localforage数据的数据量
|
* 获取localforage数据的数据量
|
||||||
* @param callback 回调函数
|
* @param callback 回调函数
|
||||||
*/
|
*/
|
||||||
@ -157,6 +167,7 @@ interface Utils {
|
|||||||
): void;
|
): void;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @deprecated
|
||||||
* 设置一个全局存储,适用于global:xxx,录像播放时将忽略此函数。
|
* 设置一个全局存储,适用于global:xxx,录像播放时将忽略此函数。
|
||||||
* @example core.setBlobal('一周目已通关', true); // 设置全局存储“一周目已通关”为true,方便二周目游戏中的新要素。
|
* @example core.setBlobal('一周目已通关', true); // 设置全局存储“一周目已通关”为true,方便二周目游戏中的新要素。
|
||||||
* @param key 全局变量名称,支持中文
|
* @param key 全局变量名称,支持中文
|
||||||
@ -165,6 +176,7 @@ interface Utils {
|
|||||||
setGlobal(key: string, value?: any): void;
|
setGlobal(key: string, value?: any): void;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @deprecated
|
||||||
* 读取一个全局存储,适用于global:xxx,支持录像。
|
* 读取一个全局存储,适用于global:xxx,支持录像。
|
||||||
* @example if (core.getGlobal('一周目已通关', false) === true) core.getItem('dagger'); // 二周目游戏进行到此处时会获得一把屠龙匕首
|
* @example if (core.getGlobal('一周目已通关', false) === true) core.getItem('dagger'); // 二周目游戏进行到此处时会获得一把屠龙匕首
|
||||||
* @param key 全局变量名称,支持中文
|
* @param key 全局变量名称,支持中文
|
||||||
@ -211,6 +223,7 @@ interface Utils {
|
|||||||
): HTMLImageElement[];
|
): HTMLImageElement[];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @deprecated
|
||||||
* 格式化日期为字符串
|
* 格式化日期为字符串
|
||||||
* @param date 时间,不填代表当前时间
|
* @param date 时间,不填代表当前时间
|
||||||
* @returns 格式: yyyy-mm-dd hh:mm:ss
|
* @returns 格式: yyyy-mm-dd hh:mm:ss
|
||||||
@ -218,6 +231,7 @@ interface Utils {
|
|||||||
formatDate(date?: Date): string;
|
formatDate(date?: Date): string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @deprecated
|
||||||
* 格式化日期为最简字符串
|
* 格式化日期为最简字符串
|
||||||
* @param date 时间,不填代表当前时间
|
* @param date 时间,不填代表当前时间
|
||||||
* @returns 格式: yyyymmddhhmmss
|
* @returns 格式: yyyymmddhhmmss
|
||||||
@ -225,6 +239,7 @@ interface Utils {
|
|||||||
formatDate2(date?: Date): string;
|
formatDate2(date?: Date): string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @deprecated
|
||||||
* 格式化时间
|
* 格式化时间
|
||||||
* @param time 时间
|
* @param time 时间
|
||||||
* @returns 格式: hh:mm:ss
|
* @returns 格式: hh:mm:ss
|
||||||
@ -238,6 +253,7 @@ interface Utils {
|
|||||||
setTwoDigits(x: number): string;
|
setTwoDigits(x: number): string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @deprecated
|
||||||
* 设置一个数为n位数显示
|
* 设置一个数为n位数显示
|
||||||
* @param x 要设置的数
|
* @param x 要设置的数
|
||||||
* @param n 设置成的位数
|
* @param n 设置成的位数
|
||||||
@ -245,6 +261,7 @@ interface Utils {
|
|||||||
setDigits(x: number, n: number): string;
|
setDigits(x: number, n: number): string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @deprecated
|
||||||
* 格式化文件大小
|
* 格式化文件大小
|
||||||
* @param size 大小,字节数
|
* @param size 大小,字节数
|
||||||
* @returns 格式为xx.xxB KB MB
|
* @returns 格式为xx.xxB KB MB
|
||||||
@ -252,6 +269,7 @@ interface Utils {
|
|||||||
formatSize(size: number): string;
|
formatSize(size: number): string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @deprecated
|
||||||
* 大数字格式化,单位为10000的倍数(w,e,z,j,g),末尾四舍五入
|
* 大数字格式化,单位为10000的倍数(w,e,z,j,g),末尾四舍五入
|
||||||
* @example core.formatBigNumber(123456789); // "12346w"
|
* @example core.formatBigNumber(123456789); // "12346w"
|
||||||
* @param x 原数字
|
* @param x 原数字
|
||||||
@ -259,6 +277,9 @@ interface Utils {
|
|||||||
* @returns 格式化结果
|
* @returns 格式化结果
|
||||||
*/
|
*/
|
||||||
formatBigNumber<T extends string>(x: T, onMap?: number): T;
|
formatBigNumber<T extends string>(x: T, onMap?: number): T;
|
||||||
|
/**
|
||||||
|
* @deprecated
|
||||||
|
*/
|
||||||
formatBigNumber(x: number | string, onMap?: number | boolean): string;
|
formatBigNumber(x: number | string, onMap?: number | boolean): string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -288,6 +309,7 @@ interface Utils {
|
|||||||
arrayToRGBA(color: Color): _RGBA;
|
arrayToRGBA(color: Color): _RGBA;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @deprecated
|
||||||
* 录像一压,其结果会被再次base64压缩
|
* 录像一压,其结果会被再次base64压缩
|
||||||
* @example core.encodeRoute(core.status.route); // 一压当前录像
|
* @example core.encodeRoute(core.status.route); // 一压当前录像
|
||||||
* @param route 原始录像,自定义内容(不予压缩,原样写入)必须由0-9A-Za-z和下划线、冒号组成,
|
* @param route 原始录像,自定义内容(不予压缩,原样写入)必须由0-9A-Za-z和下划线、冒号组成,
|
||||||
@ -297,6 +319,7 @@ interface Utils {
|
|||||||
encodeRoute(route: string[]): string;
|
encodeRoute(route: string[]): string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @deprecated
|
||||||
* 录像解压的最后一步,即一压的逆过程
|
* 录像解压的最后一步,即一压的逆过程
|
||||||
* @example core.decodeRoute(core.encodeRoute(core.status.route)); // 一压当前录像再解压-_-|
|
* @example core.decodeRoute(core.encodeRoute(core.status.route)); // 一压当前录像再解压-_-|
|
||||||
* @param route 录像解压倒数第二步的结果,即一压的结果
|
* @param route 录像解压倒数第二步的结果,即一压的结果
|
||||||
@ -343,27 +366,13 @@ interface Utils {
|
|||||||
clamp(x: number, a: number, b: number): number;
|
clamp(x: number, a: number, b: number): number;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @deprecated
|
||||||
* 访问浏览器cookie
|
* 访问浏览器cookie
|
||||||
*/
|
*/
|
||||||
getCookie(name: string): string;
|
getCookie(name: string): string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @deprecated
|
* @deprecated
|
||||||
* 填写非自绘状态栏
|
|
||||||
* @example
|
|
||||||
* // 更新状态栏中的主角生命,使用加载画面的宣传色
|
|
||||||
* core.setStatusBarInnerHTML('hp', core.status.hero.hp, 'color: #66CCFF');
|
|
||||||
* @param name 状态栏项的名称,如'hp', 'atk', 'def'等。必须是core.statusBar中的一个合法项
|
|
||||||
* @param value 要填写的内容,大数字会被格式化为至多6个字符,无中文的内容会被自动设为斜体
|
|
||||||
* @param css 额外的css样式,可选。如更改颜色等
|
|
||||||
*/
|
|
||||||
setStatusBarInnerHTML(
|
|
||||||
name: string,
|
|
||||||
value: string | number,
|
|
||||||
css?: string
|
|
||||||
): void;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 求字符串的国标码字节数,也可用于等宽字体下文本的宽度测算。请注意样板的默认字体Verdana不是等宽字体
|
* 求字符串的国标码字节数,也可用于等宽字体下文本的宽度测算。请注意样板的默认字体Verdana不是等宽字体
|
||||||
* @example core.strlen('无敌ad'); // 6
|
* @example core.strlen('无敌ad'); // 6
|
||||||
* @param str 待测字符串
|
* @param str 待测字符串
|
||||||
@ -398,6 +407,7 @@ interface Utils {
|
|||||||
matchRegex(pattern: string, string: string): string;
|
matchRegex(pattern: string, string: string): string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @deprecated
|
||||||
* base64加密
|
* base64加密
|
||||||
* @example
|
* @example
|
||||||
* core.encodeBase64('If you found this note in a small wooden box with a heart on it');
|
* core.encodeBase64('If you found this note in a small wooden box with a heart on it');
|
||||||
@ -408,6 +418,7 @@ interface Utils {
|
|||||||
encodeBase64(str: string): string;
|
encodeBase64(str: string): string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @deprecated
|
||||||
* base64解密
|
* base64解密
|
||||||
* @example
|
* @example
|
||||||
* core.decodeBase64('SWYgeW91IGZvdW5kIHRoaXMgbm90ZSBpbiBhIHNtYWxsIHdvb2RlbiBib3ggd2l0aCBhIGhlYXJ0IG9uIGl0');
|
* core.decodeBase64('SWYgeW91IGZvdW5kIHRoaXMgbm90ZSBpbiBhIHNtYWxsIHdvb2RlbiBib3ggd2l0aCBhIGhlYXJ0IG9uIGl0');
|
||||||
@ -418,6 +429,7 @@ interface Utils {
|
|||||||
decodeBase64(str: string): string;
|
decodeBase64(str: string): string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @deprecated
|
||||||
* 不支持SL的随机数
|
* 不支持SL的随机数
|
||||||
* @exmaple 1 + core.rand(6); // 随机生成一个小于7的正整数,模拟骰子的效果
|
* @exmaple 1 + core.rand(6); // 随机生成一个小于7的正整数,模拟骰子的效果
|
||||||
* @param num 填正数表示生成小于num的随机自然数,否则生成小于1的随机正数
|
* @param num 填正数表示生成小于num的随机自然数,否则生成小于1的随机正数
|
||||||
@ -426,6 +438,7 @@ interface Utils {
|
|||||||
rand(num?: number): number;
|
rand(num?: number): number;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @deprecated
|
||||||
* 支持SL的随机数,并计入录像
|
* 支持SL的随机数,并计入录像
|
||||||
* @exmaple 1 + core.rand2(6); // 随机生成一个小于7的正整数,模拟骰子的效果
|
* @exmaple 1 + core.rand2(6); // 随机生成一个小于7的正整数,模拟骰子的效果
|
||||||
* @param num 正整数,0或不填会被视为2147483648
|
* @param num 正整数,0或不填会被视为2147483648
|
||||||
@ -434,6 +447,7 @@ interface Utils {
|
|||||||
rand2(num?: number): number;
|
rand2(num?: number): number;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @deprecated
|
||||||
* 尝试请求读取一个本地文件内容 [异步]
|
* 尝试请求读取一个本地文件内容 [异步]
|
||||||
* @param success 成功后的回调
|
* @param success 成功后的回调
|
||||||
* @param error 失败后的回调
|
* @param error 失败后的回调
|
||||||
@ -448,12 +462,14 @@ interface Utils {
|
|||||||
): void;
|
): void;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @deprecated
|
||||||
* 文件读取完毕后的内容处理 [异步]
|
* 文件读取完毕后的内容处理 [异步]
|
||||||
* @param content 读取的内容
|
* @param content 读取的内容
|
||||||
*/
|
*/
|
||||||
readFileContent(content: string): void;
|
readFileContent(content: string): void;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @deprecated
|
||||||
* 弹窗请求下载一个文本文件
|
* 弹窗请求下载一个文本文件
|
||||||
* @example core.download('route.txt', core.status.route); // 弹窗请求下载录像
|
* @example core.download('route.txt', core.status.route); // 弹窗请求下载录像
|
||||||
* @param filename 文件名
|
* @param filename 文件名
|
||||||
@ -462,6 +478,7 @@ interface Utils {
|
|||||||
download(filename: string, content: string | string[]): void;
|
download(filename: string, content: string | string[]): void;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @deprecated
|
||||||
* 尝试复制一段文本到剪切板
|
* 尝试复制一段文本到剪切板
|
||||||
* @param data 赋值的东西
|
* @param data 赋值的东西
|
||||||
*/
|
*/
|
||||||
@ -512,11 +529,13 @@ interface Utils {
|
|||||||
): void;
|
): void;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @deprecated
|
||||||
* 获得浏览器唯一的guid
|
* 获得浏览器唯一的guid
|
||||||
*/
|
*/
|
||||||
getGuid(): string;
|
getGuid(): string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @deprecated
|
||||||
* 获取一个对象的哈希值
|
* 获取一个对象的哈希值
|
||||||
* @param obj 要获取的对象
|
* @param obj 要获取的对象
|
||||||
*/
|
*/
|
||||||
@ -530,6 +549,7 @@ interface Utils {
|
|||||||
same(a: any, b: any): boolean;
|
same(a: any, b: any): boolean;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @deprecated
|
||||||
* 解压一段内容
|
* 解压一段内容
|
||||||
*/
|
*/
|
||||||
unzip(
|
unzip(
|
||||||
@ -541,6 +561,7 @@ interface Utils {
|
|||||||
): void;
|
): void;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @deprecated
|
||||||
* 发送一个HTTP请求 [异步]
|
* 发送一个HTTP请求 [异步]
|
||||||
* @param type 请求类型
|
* @param type 请求类型
|
||||||
* @param url 目标地址
|
* @param url 目标地址
|
||||||
|
Loading…
Reference in New Issue
Block a user