基于Java spring + vue3 + nuxt构建的内容管理系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

25 lines
681 B

export function escapeHtml(str: string) {
let temp = '';
if (str.length === 0) return '';
temp = str.replace(/&/g, '&');
temp = temp.replace(/&lt;/g, '<');
temp = temp.replace(/&gt;/g, '>');
temp = temp.replace(/&nbsp;/g, ' ');
temp = temp.replace(/&#39;/g, "'");
temp = temp.replace(/&quot;/g, '"');
return temp;
}
export function isArray(str: unknown) {
return Object.prototype.toString.call(str) === '[object Array]';
}
// 配置服务器接口
export function getBaseUrl() {
console.log('process:',process.server)
if (process.server) {
return "https://modules.gxwebsoft.com/api"
} else {
return "https://modules.gxwebsoft.com/api"
}
}