完成以下代码后,我们将视频收录在" blob:http://localhost:8080/2d118b17-34b3-4e19-8044-72e9a0c5eaff""甲。我想将blob url转换为字节数组。
有人可以帮我转换bloburl到字节数组吗?
我的HTML:
<video ng-if="item.documentType == 'video'" controls width="100" height="145">
<source data-ng-src="{{item.data}}">
Your browser does not support the video tag.
</video>
我的JS:
if(type == 'video'){
var item = {
name:file.files[0].name,
documentType:type,
src: file.files[0],
data: URL.createObjectURL(file.files[0]),
caseFileId: $scope.mediaItem.caseId
}
$scope.mediaItem.listDocumentDto.push(item);
}