首页 > 解决方案 > Require.js - “模块名称...尚未加载上下文:”

问题描述

所以我对require.js很陌生,我很困惑。有人能告诉我为什么我在脚本顶部需要它时收到消息“模块名称“kahoot.js”尚未加载以获取上下文”吗?

    <script>
        require(['config'],function() {
            require(['script']);
            var Kahoot = require("kahoot.js");
            var client = new Kahoot;
            console.log("Joining kahoot...");
            client.join(gamePin,"kahoot.js");
            client.on("joined", () => {
                console.log("I joined the Kahoot!");
            });
            client.on("quizStart", quiz => {
                console.log("The quiz has started! The quiz's name is:", quiz.name);
            });
            client.on("questionStart", question => {
                console.log("A new question has started, answering the first answer.");
                question.answer(0);
            });
            client.on("quizEnd", () => {
                console.log("The quiz has ended.");
            });
        });
    </script>

标签: javascriptrequirejs

解决方案


推荐阅读