簡體   English   中英

動詞未從xAPI語句顯示

[英]Verb not displaying from xAPI statement

當我發送此示例語句時,當我在LRS中查看信息時,動詞不顯示。 演員和其他信息正確顯示。 有人可以告訴我我可能做錯了什么嗎? 謝謝。

<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Simple Statement</title>
<script src="js/tincan.js" type="text/javascript"></script>
<script type="text/javascript">

function init()
        {

var tincan = new TinCan (
    {
        recordStores: [
            {
                endpoint: "https://lrs.adlnet.gov/xapi/",
                username: "xapi-tools",
                password: "xapi-tools",
                allowFail: false
            }
        ]
    }
);

tincan.sendStatement(
    {
        actor: {
            mbox: "mailto:myemailaddress@example.com"
        },
        verb: {
            id: "http://adlnet.gov/expapi/verbs/attempted"
        },
        target: {
            id: "http://tincanapi.com/activities/sending-my-first-statement"
        }
    },
    function (err, result) {
        //Handle any errors here. This code just outputs the result to the page. 
        document.write("<pre>");
        document.write(JSON.stringify(err, null, 4));
        document.write("</pre>");
        document.write("<pre>");
        document.write(JSON.stringify(result, null, 4));
        document.write("</pre>");
    }
);
        }
</script>

</head>

<body onload='init()'>

最有可能沒有。 您可以通過提供“顯示”屬性並在其中包含一個或多個語言代碼/值對來“改進”語句,從而使該語句包括該對象的“人類可讀”版本。 我認為TinCanJS會一直為您做那個動詞。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM