- 用 writeFile写入的文本文件,用 readfile 读取不到 是何故?
用 writeFile写入的文本文件,用 readfile 读取不到,用 let xx2 = wx.getFileSystemManager() const basepath = `${wx.env.USER_DATA_PATH}` xx2.readdir({ dirPath: basepath,/// 获取文件列表 读取目录文件能找到,
2020-06-05 - wx.saveFile读取文件时错误?
ReadFromFile:function (params) { let fsm = wx.getFileSystemManager(); console.log(wx.env.USER_DATA_PATH), wx.saveFile({ tempFilePath: wx.env.USER_DATA_PATH + "/Crsmini.txt", success(res) { fsm.readFile({ filePath:res.savedFilePath, encoding: 'utf8', success:function(res){ console.log(res.data) } }) }, fail: res => { console.info(res)} }) 这里是读取保存的文本问题,提示错误 {errMsg: "saveFile:fail tempFilePath file not exist"}errMsg: "saveFile:fail tempFilePath file not exist"__proto__: Object
2020-06-04 - 您可能正在连接到一个伪装成“shxhqc.gnway.cc”的服务器?
1. {errMsg: "request:fail 此服务器的证书无效。您可能正在连接到一个伪装成“shxhqc.gnway.cc”的服务器,这会威胁到您的机密信息的安全。"}返回这个错误 但但是我这个证书也是申请过的[图片] 1. errMsg: "request:fail 此服务器的证书无效。您可能正在连接到一个伪装成“shxhqc.gnway.cc”的服务器,这会威胁到您的机密信息的安全。" 2. __proto__: Object
2020-05-24 - 真机调试数据不显示,域名信息里面已经是合法域名了,为啥还报错误?
[图片][图片][图片]
2020-05-24 - 如何去掉字符中的回车行?
[图片] word-break: keep-all; word-wrap: break-word; white-space: pre-line; text-overflow:ellipsis; 这个方法也用了 ,还用了 <wxs module="util"> var format = function(text){ if(!text){ return } var reg = getRegExp('\\\\n','g'); reg = getRegExp('\\\\n','g'); var text = text.replace(reg,'\n '); text = text.replace("/\n/g",'\\n'); return text; } module.exports = { format:format } </wxs> <wxs module="m2"> var ReplaceHuanghang =function(strCp) { return strCp.replace("/↵/g","") ; } module.exports.ReplaceHuanghang = ReplaceHuanghang; </wxs> 还是无济于事,那个回车是excel复制带过来的
2020-05-23 - 请问,在小程序中,如何调用类似与 MID 之类的字符函数?
请问,在小程序中,如何调用类似与 MID 之类的字符函数
2020-05-23 - 我在在一个页面中讲图片置顶设置了图片的 position=fixed 后下面的文字图片下面?
我在在一个页面中,讲图片置顶,设置了图片的 position=fixed 后,下面的文字,到图片下面去了 请哪位大神给解答解答!
2020-05-18