1

API経由でRを使用してMechanicalTurkHitを作成しようとしています。基になるhtmlファイルを使用してHITを作成したいので、コードでGenerateHTMLQuestionコマンドを使用します。私が理解している限り(私は初心者です)、このコマンドはhtmlファイルをXMLファイルに変換します。残念ながら、このコマンドは常に次のエラーを引き起こします。

エラー:1:ドキュメントの最初でのみ許可されるXML宣言2:ドキュメントの最後で追加のコンテンツ

HTMLコードは次のとおりです。

    <h3>Find the Website Address for this Retailer</h3>
    <ul>
        <li>For this retailer below, enter the website address for the official website of the retailer</li>
        <li>Include the full address, e.g. http://www.thecheesecakefactory.com</li>
        <li>Do not include URLs to city guides and listings like Citysearch.</li>
    </ul>
    </div>
    <p>Restaurant Name: <b>Teststrasse</b></p>
    <p>Address: <b>1</b></p>
    <p>Phone Number: <b>651351069</b></p>
    <p>Website Address:</p>
    <p><input type="text" name="Q1Url" id="Q1Url" size="100" /></p>
    <p><style type="text/css">
    <!--
    .highlight-box { border:solid 0px #98BE10; background:#FCF9CE; color:#222222; padding:4px; text-align:left; font-size: smaller;}
    -->

</style></p>

助けていただければ幸いです。

アレックス

4

1 に答える 1

1

htmlの質問を直接使用したことはありませんが、htmlコードは有効なhtml5である必要があるようです。(詳細については、mturkドキュメントをご覧ください。)

ドキュメントから、turkはhtmlをxmlに変換するのではなく、iframeにhtmlをロードします。したがって、htmlは完全で有効なhtmlページである必要があります。

于 2013-03-25T13:03:27.540 に答える