- 小程序怎么让输入的文本格式正常显示?
我在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")} 我要怎么把输入的文本格式完整的显示出来呢?
2020-09-30 - 小程序录音,onStop不执行,然后直接走onError函数,直接报错?
我的需求是学生录音答题,多个题目,答完一个接着下一个,用到倒计时,倒计时结束自动结束录音; 每次都会开始录音onStart,提交题目时停止录音,然后上传录音文件; 现在的问题是: 每次录音开始没问题,结束录音动不动就不执行onStop回调函数,然后报错(operateRecorder:fail:audio is stop, don't stop record again); 似乎是必现问题,但是又不能找到必现的规律; 机型是:华为magic2 求解啊!!!
2020-08-21