我希望用户从网络摄像头拍照或上传照片。如果他选择拍照,它应该加载uploadFile。即使这是可能的,我也不知道。我愿意接受建议。
//I have an image
<img id="photo"> // I am getting this from webcam
//And I have an input of type file upload
<input type="file" name="uploadedFile" id="uploadedFile" accept="image/*">
// Now this image data in photo should go to uploadedFile. Is it possible?
答案 0 :(得分:2)
这是不可能的。
您可以将数据编码为文本(例如base64)并将其存储在隐藏输入中,也可以使用XMLHttpRequest对象而不是表单提交将其发送到服务器。