gpt4 book ai didi

javascript - TypedJS 错误 : Uncaught ReferenceError: Typed is not defined

转载 作者:行者123 更新时间:2023-11-30 20:35:58 25 4
gpt4 key购买 nike

我正在努力让 TypedJS 在我的 Laravel 网站上运行。我使用 npm 安装它并将文件添加到我的 resources/assets/js/app.js 文件中,如下所示:

/* default code */

require('../../../node_modules/typed.js/lib/typed.min.js');
require('./typedjs');

typedjs.js 看起来像这样:

var typed = new Typed('#header-search-input', {
strings: ["Los Angeles", "90210", "Vans Spinning Away Video"],
attr: 'placeholder',
typeSpeed: 30
});

我得到的完整控制台错误是:

Uncaught ReferenceError: Typed is not defined
at Object.disposed (app.js:47337)
at __webpack_require__ (app.js:20)
at Object.<anonymous> (app.js:13901)
at __webpack_require__ (app.js:20)
at Object.<anonymous> (app.js:13869)
at __webpack_require__ (app.js:20)
at app.js:63
at app.js:66

感觉我不需要为 typed.min.js 提供正确的文件,或者我需要包含其他文件,但不确定它们是什么。

最佳答案

您没有将 typed.js 模块分配给变量。你有 require(typed.min.js);。你需要 var Typed = require(typed.min.js);

关于javascript - TypedJS 错误 : Uncaught ReferenceError: Typed is not defined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49834369/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com