提交 bd13b207 编写于 作者: D DCloud_LXH

update: chooseFile、chooseImage、chooseVideo的extension为空时报错与微信一致

上级 69c9ae75
...@@ -32,6 +32,9 @@ export const chooseFile = { ...@@ -32,6 +32,9 @@ export const chooseFile = {
}, },
extension: { extension: {
type: Array, type: Array,
default: [''] default: [''],
validator (extension, params) {
if (extension.length === 0) { return 'param extension should not be empty.' }
}
} }
} }
...@@ -35,7 +35,7 @@ export const chooseImage = { ...@@ -35,7 +35,7 @@ export const chooseImage = {
type: Array, type: Array,
default: ['*'], default: ['*'],
validator (extension, params) { validator (extension, params) {
if (extension.length === 0) params.extension = ['*'] if (extension.length === 0) { return 'param extension should not be empty.' }
} }
} }
} }
...@@ -22,7 +22,7 @@ export const chooseVideo = { ...@@ -22,7 +22,7 @@ export const chooseVideo = {
type: Array, type: Array,
default: ['*'], default: ['*'],
validator (extension, params) { validator (extension, params) {
if (extension.length === 0) params.extension = ['*'] if (extension.length === 0) { return 'param extension should not be empty.' }
} }
} }
} }
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册