2016-07-26 2 views
0

ember-paper를 사용하여 파일 (이미지)을 서버 (expressJS)에 업로드하려고 시도했지만 파일을 가져올 수 없습니다.서버에 업로드하기 위해 파일을 가져 오는 방법

#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과 이야기를 나누었습니다.

관련 문제