我正在尝试在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 <
我在做什么错了?