2016-07-26 32 views
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')); 
    } 
} 

嘗試了幾種組合,但總是得到'未定義'。

回答

1

看來onChange方法永遠不會被調用。 onChange鏈接到輸入類型file不支持的HTML輸入屬性oninput

我跟Miguel談了這個問題。

相關問題