Appearance
ESUploadModule
upload(String url, String mediaType, String filePramsKey, String filePath, Object esParams)
功能描述
文件上传功能。
参数
属性 | 类型 | 默认值 | 必填 | 说明 |
---|---|---|---|---|
url | String | null | 是 | 文件上传路径 |
mediaType | String | null | 是 | 文件类型 |
filePramsKey | String | null | 是 | 文件上传form表单key |
filePath | String | null | 是 | 文件本地存储路径 |
esParams | Object | null | 是 | 文件上传其他参数,key value形式 |
返回值
无
示例代码
import {ESUploadModule} from "@extscreen/es-uploader";
ESUploadModule.upload(
'http://spark.hiliad.com/go/api/asr/parse',
'multipart/form-data',
'file',
'/data/data/com.xxx.xx/voice.mp3',
{
params1: value1,
params2: value2,
});
注意
无
ESUpload
功能描述
监听文件上传状态。
参数
无
返回值
无
示例代码
import {ESUpload} from "@extscreen/es-uploader";
export default {
mixins: [
ESUpload
],
methods: {
onESUploadStart(params) {
},
onESUploadSuccess(params) {
},
onESUploadError(params) {
},
}
}
注意
无