我正在尝试从Parse托管解决方案中的表单上传图像。我试图找到一个好的教程或者什么东西可以开始,但我不明白我应该从哪里开始。该功能非常基本,所以我可能偶然发现了解决方案,但所有这些都显得如此复杂和不必要。总之,我想要这些片段:
<form action="/uploadimage" method="post" id="uploadimageform">
<input type="file" id="image">
<button>Upload</button>
</form>
app.post('/uploadimage', function(req, res) {
// var object has a File field called image
object.set('image', [the image]);
// save object
});
我是否必须使用AnyImg示例使用的Backbone?有没有更简单的方法来解决这个问题?