0
使用ember-paper我試圖將文件(圖像)上載到服務器(expressJS),但我無法獲取文件。如何獲取文件以將其上傳到服務器(ember-paper)
#template.hbs
{{paper-input
type="file"
file=file
onChange=(action (mut file))
}}
{{#paper-button onClick=(action 'submit')}}submit{{/paper-button}}
#controller.js
actions: {
submit() {
console.log(this.get('file'));
}
}
嘗試了幾種組合,但總是得到'未定義'。