gpt4 book ai didi

jquery - 运行node.js里程表中间件

转载 作者:太空宇宙 更新时间:2023-11-04 02:30:05 25 4
gpt4 key购买 nike

在我的 Node.js Express 应用程序中,我尝试从 here 运行里程表中间件。我通过以下方式将其包含在我的代码文件中:

var odometer = require('odometer');

当我运行应用程序时,在控制台中收到错误消息

ReferenceError: document is not defined
at Object.<anonymous> (C:\xampp\htdocs\ri\node_modules\odometer\odometer.js:
33:27)

显然document在服务器端不可用,里程表的主要javascript文件使用document。所以

1)如何运行中间件?

2)如果无法运行这个,还有其他替代方案吗?

最佳答案

里程表不是中间件。它适用于浏览器,因此只需包含到您的 html 文件中即可。

How To Use 来自文档..

Add the js and a theme file to your page:

<link rel="stylesheet" href="path/to/your/file/odometer-theme-car.css" />
<script src="path/to/your/file/odometer.js"></script>

Any element with class name "odometer" will automatically be made into an Odometer! When you want to update the value, simply update it the same way you normally would.

element.innerHTML = 123 // Native, or...
$('.odometer').html(123) // with jQuery

关于jquery - 运行node.js里程表中间件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27566338/

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