nodejs出现require is not defined和__dirname is not define 错误
Posted bcbobo21cn
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nodejs出现require is not defined和__dirname is not define 错误相关的知识,希望对你有一定的参考价值。
参阅此,
Cesium环境搭建成功和初步看一下它的示例_bcbobo21cn的博客-CSDN博客
运行Cesium入门示例,出现下图错误,根据资料,这是node版本的问题;
解决方法是,在server.js头部加入,
import createRequire from 'module';
const require = createRequire(import.meta.url);
保存之后再运行,又出现下图错误,
根据资料需要加入如下,
import path from 'path'
import fileURLToPath from 'url'
const __filenameNew = fileURLToPath(import.meta.url)
const __dirnameNew = path.dirname(__filenameNew)
我加的如下,
然后就好了;
Cesium是三维地球和地图可视化开源javascript库;
Cesium一词来源于化学元素铯,铯是制造原子钟的关键元素;
Cesium为三维GIS提供了一个高效的数据可视化平台。即:
Cesium是一个跨平台、跨浏览器的展示三维地球和地图的JavaScript库,
Cesium使用WebGL来进行硬件加速图形,使用时不需要任何插件支持,
Cesium是基于Apache2.0许可的开源程序,可以免费用于商业和非商业用途;
以上是关于nodejs出现require is not defined和__dirname is not define 错误的主要内容,如果未能解决你的问题,请参考以下文章
为啥会出现这个错误:Gulp 中的“require is not defined”?
Electron 踩坑记录- require is not defined
python 3.5: TypeError: a bytes-like object is required, not 'str'
解决“requires XXX which is not installed“
pip is configured with locations that require TLS/SSL, however the ssl module in Python is not 解决方法(
安装python 第三方库遇到的安装问题 microsoft visual studio c++ 10.0 is required,Could not find function xmlCheckVe