运行报错filePath.match is not a function?
发布于 7 年前 作者 chengping 9478 次浏览 来自 官方Issues

运行报错 filePath.match is not a function,代码如下,请指教

3 回复

请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。

你把filePath.match()[0]后面的[0]去掉试试。

估计是数组里面的东西未转换成字符串, 再后面加个双引号,让它强制转换看看。

filePath= _pageObj.data.uploadFileList[i]+"";

回到顶部