Commit 74ed7aec authored by baiyaaaaa's avatar baiyaaaaa

upload data prop

parent 75c10ba7
## 更新日志
### 1.0.0-rc.7
*2016-XX-XX*
- Upload 新增 Data 属性支持额外数据的传输
### 1.0.0-rc.6
*2016-10-11*
......
......@@ -31,18 +31,13 @@ export default {
};
}
},
multiple: {
type: Boolean,
default: false
},
data: Object,
multiple: Boolean,
name: {
type: String,
default: 'file'
},
withCredentials: {
type: Boolean,
default: false
},
withCredentials: Boolean,
thumbnailMode: Boolean,
showUploadList: {
type: Boolean,
......@@ -179,6 +174,7 @@ export default {
'with-credentials': this.withCredentials,
headers: this.headers,
name: this.name,
data: this.data,
accept: this.thumbnailMode ? 'image/*' : this.accept,
'on-start': this.handleStart,
'on-progress': this.handleProgress,
......
......@@ -34,6 +34,7 @@ export default {
type: String,
default: 'file'
},
data: Object,
headers: Object,
withCredentials: Boolean,
multiple: Boolean,
......@@ -133,6 +134,7 @@ export default {
headers: this.headers,
withCredentials: this.withCredentials,
file: file,
data: this.data,
filename: this.name,
onProgress: e => {
this.onProgress(e, file);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment