wxs判断
if (regex.exec(name) == null) {
console.log(123)
return arr
} else {
console.log(JSON.stringify(arr))
return arr;
}
wxs里面使用了正则进行判断一串字符串是否能返回内容,然后在能返回的情况下一直走else,为什么
if (regex.exec(name) == null) {
console.log(123)
return arr
} else {
console.log(JSON.stringify(arr))
return arr;
}
wxs里面使用了正则进行判断一串字符串是否能返回内容,然后在能返回的情况下一直走else,为什么