小程序怎么让输入的文本格式正常显示?
我在textarea组件中输入以下文本(网上随便复制的):
var test = " \n ";
//var test = " ";
if(test.match(/^\s+$/)){
console.log("all space or \\n")
}
if(test.match(/^[ ]+$/)){
console.log("all space")
}
if(test.match(/^[ ]*$/)){
console.log("all space or empty")
}
//空|空格|换行
if(test.match(/^\s*$/)){
console.log("all space or \\n or empty")
}
类似这种有格式的文本保存成功后,在显示的时候,是一行
var test " \n “;//var test” ";if(test.match(/^\s+$/)){ console.log(“all space or \\n”)}if(test.match(/^[ ]+$/)){ console.log(“all space”)}if(test.match(/^[ ]*$/)){ console.log(“all space or empty”)}//空|空格|换行if(test.match(/^\s*$/)){ console.log(“all space or \\n or empty”)}
我要怎么把输入的文本格式完整的显示出来呢?