开发者

Creating an object with an external form

I have a upload form that is going to S3 --

<form action="https://test.s3.amazonaws.com/" method="post" enctype="multipart/form-data">
    <input type="file" name="file" id="id_file" />
    <input type="submit" value="Upload to Amazon S3" name="upload">
</form> 

When the form is submitted to S3, I also need to create an object in my db and get the id of the object. How would I开发者_如何转开发 do this (without redirecting to my view)? Thank you.


You could use an iframe to send the form and js to search for the id you are looking for in the retrieved page. You could also use another script to perform the post method like php with the curl library. You could grab all the data retrieved from there, search for what you are looking for and add what you need to your database.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜