gpt4 book ai didi

ember.js - 如何 : File Upload with ember. js

转载 作者:行者123 更新时间:2023-12-04 12:10:07 27 4
gpt4 key购买 nike

关闭。这个问题需要更多focused .它目前不接受答案。












想改善这个问题吗?更新问题,使其仅关注一个问题 editing this post .

2年前关闭。




Improve this question




我想知道如何使用 ember.js 进行真正的文件上传(将文件保存到服务器)

有什么好的例子吗?

最佳答案

从另一个 thread 看我的回答

<input
multiple="true"
onchange={{action "upload"}}
accept="image/png,image/jpeg,application/pdf"
type="file"
/>

actions: {
upload: function(event) {
const reader = new FileReader();
const file = event.target.files[0];
let imageData;

// Note: reading file is async
reader.onload = () => {
imageData = reader.result;
this.set(data.image', imageData);

// additional logics as you wish
};

if (file) {
reader.readAsDataURL(file);
}
}
}

它只是有效。

关于ember.js - 如何 : File Upload with ember. js,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14676546/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com