admin管理员组文章数量:1342725
feedback.js is a great jquery plugin that allows you to create feedback forms which include a screenshot, created on the clients browser, along with the form.
how can I send captured image and user's review to server side api?
feedback.js is a great jquery plugin that allows you to create feedback forms which include a screenshot, created on the clients browser, along with the form.
how can I send captured image and user's review to server side api?
Share Improve this question edited Feb 1, 2014 at 0:43 Peyman Mehrabani asked Jan 2, 2013 at 23:43 Peyman MehrabaniPeyman Mehrabani 7297 silver badges18 bronze badges1 Answer
Reset to default 13Indeed, feedback.js is an incredible piece of javascript. Thank you very much, Niklas von Hertzen! It does not depend on jQuery, though, but you can use both in the same page.
You can send the image to a server by passing the 'url' option. The Feedback function supports many options, for example:
Feedback({h2cPath:'/js/html2canvas.js',
url: '/send/email/uri/on/server',
label: "Send an email",
header: "Let's send an email!",
messageSuccess: "Done!",
messageError: "Uh oh..."
})
- h2cPath : the location of the html2canvas.js file (mandatory, other options are optional).
- url : the URL called when the user submits feedback. This is the answer to your question.
- label : text of the feedback button.
- header : header text of popup window.
The URL specified in the url is called using the HTTP POST method, with the image in the 'data' parameter. The image itself is encoded as a DOMString. If you want to know what it contains exactly, look at the specification of toDataURL. Other information that your users have entered es in other parameters, depending on the form-fields you define.
本文标签: javascriptfeedbackjs server apiStack Overflow
版权声明:本文标题:javascript - feedback.js server api - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743711502a2526013.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论