CN-893 单测用例--下钻table

This commit is contained in:
hyx
2023-02-28 11:49:13 +08:00
parent a55ab9fb15
commit 9fddf7914d
3 changed files with 576 additions and 19 deletions

View File

@@ -878,9 +878,9 @@ export async function getDnsMapData (type) {
}
export function handleSpecialValue (value) {
if (value) {
value = value.replaceAll("'", "\\\\'")
.replaceAll('"', '\\"')
.replaceAll('&', '%26')
value.replace(/\'/g, "\\\\'")
.replace(/\"/g, '\\"')
.replace(/\&/g, '%26')
}
return value
}