shim.min.js:1未捕获的SyntaxError:意外的令牌< - Angular 4

时间:2017-04-16 20:45:18

标签: node.js angular

美好的一天人们, 我按照这个link here包含了shim.min.js。这是为了能够支持IE 11所需要的。但现在我得到了一个奇怪的错误: enter image description here 有人可以帮我理解这个错误。

这是我如下所示的方式:          

<head>
<meta charset="utf-8">
<title>At2</title>
<base href="/">

<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<script type="text/javascript" src="node_modules/core-
 js/client/shim.min.js"></script>

 <body>

<app-root>Loading...</app-root>

请参阅我的节点服务器:

  let express = require("express");
  var path = require('path');
  let app = require('express')();
  let http = require('http').Server(app);

  const bodyParser = require('body-parser');



   // // Parsers for POST data
   app.use(bodyParser.json());
   app.use(bodyParser.urlencoded({ extended: false }));


   app.use(express.static(path.join(__dirname, 'dist')));



  app.get('*', function(req, res) {
   res.sendFile(path.join(__dirname, 'dist/index.html'));
   });




   const port = process.env.PORT || '3000';
   app.set('port', port);

   http.listen(port, function() {
   console.log('listening on *:3000');
 });

0 个答案:

没有答案