问题描述:后端需要file文件,而小程序拍照剪辑后得到的tempFilePath是临时链接,不是file文件对象。找遍了小程序的所有api都没有
本来想通过普通js写,但是小程序又不支持newImage。想看看大家有没有好的方法和案例
### 如何将url转成file对象
### 相关代码
Taro.canvasToTempFilePath({//调用方法,开始截取
x: x,
y: ys,
width: width,
height: areaHeight,
destWidth: destWidth,
destHeight: areaHeight,
canvasId: 'myCanvas',
success: function (res) {
Taro.showLoading({
title: '成功',
})
imgFiles.push(res.tempFilePath)
_this.setState({
imgFiles
})
Taro.hideLoading()
console.log('res.tempFilePath',i,ys,res.tempFilePath);
}
})
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…