- 重命名目录: openhis-server-new → healthlink-his-server - 重命名目录: openhis-ui-vue3 → healthlink-his-ui - 重命名Java类: OpenHisApplication → HealthLinkHisApplication - 重命名Java类: OpenHisMiniApp → HealthLinkHisMiniApp - 重命名组件目录: OpenHis → HealthLinkHis - 重命名样式文件: openhis.scss → healthlink-his.scss - 重命名配置: nginx-openhis.conf → nginx-healthlink-his.conf - 更新所有源码引用 (0个残留) - 更新所有文档/脚本/配置中的引用
25 lines
815 B
JavaScript
Executable File
25 lines
815 B
JavaScript
Executable File
// 测试util._extend是否存在
|
||
if (typeof process !== 'undefined' && process.versions && process.versions.node) {
|
||
try {
|
||
const util = require('util');
|
||
console.log('util._extend存在吗?', typeof util._extend);
|
||
if (typeof util._extend === 'function') {
|
||
console.log('util._extend是一个函数');
|
||
} else {
|
||
console.log('util._extend不是一个函数,添加兼容实现');
|
||
util._extend = function(destination, source) {
|
||
for (var key in source) {
|
||
if (source.hasOwnProperty(key)) {
|
||
destination[key] = source[key];
|
||
}
|
||
}
|
||
return destination;
|
||
};
|
||
console.log('兼容实现添加成功');
|
||
}
|
||
} catch (e) {
|
||
console.error('util模块加载失败:', e);
|
||
}
|
||
} else {
|
||
console.log('不在Node.js环境中');
|
||
} |