HTML导入每个模块,而不是链接导入

时间:2018-12-03 07:13:12

标签: html

这是我的电子APP的HTML头。

<!DOCTYPE html>
<html lang="en">
<head>
  <link rel="import" href="importInfo.info">
</head>

这是importInfo.info文件。

<meta charset="utf-8">
  <title>HITS</title>
  <script>window.$ = window.jQuery = require('../node_modules/jquery/dist/jquery.min.js');</script>
  <link rel="stylesheet" href="../asset/font-awesome/css/font-awesome.min.css">
  <script src="../node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
  <link href="../node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
  <script src="../node_modules/jquery-ui/external/requirejs/require.js"></script> 
  <link href="../asset/css/jquery-ui.css" rel="stylesheet">
  <link href="../asset/css/style.css" rel="stylesheet">
  <script src="../asset/js/frontLib.script"></script>

由于此错误,我想通过简单地复制和粘贴将其更改为下面的HTML enter image description here

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>HITS</title>
  <script>window.$ = window.jQuery = require('../node_modules/jquery/dist/jquery.min.js');</script>
  <link rel="stylesheet" href="../asset/font-awesome/css/font-awesome.min.css">
  <script src="../node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
  <link href="../node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
  <script src="../node_modules/jquery-ui/external/requirejs/require.js"></script> 
  <link href="../asset/css/jquery-ui.css" rel="stylesheet">
  <link href="../asset/css/style.css" rel="stylesheet">
  <script src="../asset/js/frontLib.script"></script>
</head>

我一改变

enter image description here

require.js:166未捕获的错误:匿名define()模块不匹配:function(){

  return _;
}

发生此错误。

我该怎么办?我可以简单地保留链接rel =“ import” ???

它说计划在2018年3月左右将其删除,所以我担心,尽管时间已经过去了。

0 个答案:

没有答案