如何在nodeJS项目中包含jqvmap

时间:2019-07-18 16:19:23

标签: javascript node.js express jqvmap

我正在尝试在nodejs项目中使用JQVMap

我正在如下安装JQVMap

npm install jqvmap -S

然后在app.js中将其链接到静态路由:

app.use('/scripts', express.static(__dirname + '/node_modules/jqvmap/dist/'));

在我的.ejs文件中:

<% include partials/header %>

<link rel="stylesheet" href="https://cdn.datatables.net/1.10.19/css/dataTables.bootstrap4.min.css">
<link rel="stylesheet" href="/stylesheets/admin.css">
<link rel="stylesheet" href="/scripts/jqvmap.css">

<script src="/scripts/jquery.vmap.js"></script>
<script src="/scripts/maps/jquery.vmap.world.js"></script>

但是我的页面无法加载,并且在控制台中我看到:

Uncaught SyntaxError: Unexpected identifier
jquery-jvectormap.min.js:1 Uncaught SyntaxError: Unexpected token <
jquery-jvectormap-world-mill-en.js:1 Uncaught SyntaxError: Unexpected token <

我在做什么错了?

0 个答案:

没有答案