Is there any way to make fields required in an Amazon Mechanical Turk HIT? I get some blank responses to the textboxes or radiobuttons in my HTML form and the Amazon's documentation doesn't seem to provide any mechanism for validation.
标签:
mechanicalturk
相关问题
- Submission Validation with the Crowd Template on M
- How to get results from a HIT on sandbox via Mturk
- Creating mTurk HIT from Layout with parameters usi
- Sanitize text for Mechanical Turk?
- Rspec Testing of real time results through mTurk
相关文章
- Rspec Testing of real time results through mTurk
- Mechanical Turk tutorials or how-to guides
- Getting workerId by assignmentId
- Reshape in R without aggregation (for example MTur
- 在所以getBalance亚马逊特克给出错误[关闭](getBalance in Amazon Tu
- 如何定义什么是“提交”按钮返回上的Mechanical Turk?(How do I define
- 消毒文字的Mechanical Turk?(Sanitize text for Mechanical
- 允许多个区域设置为在土耳其机器人资格测试(Allow multiple locales as a q
The easiest way would probably be to use Amazon's API call 'createHIT' to create your HIT: http://docs.amazonwebservices.com/AWSMechTurk/latest/AWSMturkAPI/index.html?ApiReference_CreateHITOperation.html
Then, you can specify your HIT questions using a 'questionForm' data structure, which allows defining any field as 'required', and enforces it when the form is submitted.
I would suggest you create your HIT on an external server, used javascript for form validation and then display the questionnaire on Mechanical Turk using an iFrame.
I think adding the required attribute to your element works fine.
If you don't mind creating an external web app to host your question form, you can create an external HIT and do your validation there.