美文网首页
webpack 系统学习(2)

webpack 系统学习(2)

作者: super静_jingjing | 来源:发表于2018-08-23 16:31 被阅读0次

如何将js的内容进入到html页面中

<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8">
    <title><%= htmlWebpackPlugin.options.title %></title>
    <script type="text/javascript" >
      <%= 
      compilation.assets[htmlWebpackPlugin.files.chunks.main.entry.substr(htmlWebpackPlugin.files.publicPath.length)].source() %>
    </script>
  </head>
  <body>
  </body>
</html>

配置文件如下:

const path = require('path')
const htmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
    entry: {
        main:'./src/script/main.js',
        a:'./src/script/a.js',
    },
    output:{
        path:path.resolve(__dirname,'dist/js'),
        filename:'[name]-[hash].js'
    },
    plugins:[
        new htmlWebpackPlugin({
            filename: 'index-[hash].html',
            template: 'index.html',
            inject: 'body',
            title: "test config file title "
        })
    ]
}

打包生成的html如下:

<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8">
    <title>test config file title </title>
    <script type="text/javascript" >
      /******/ (function(modules) { // webpackBootstrap
/******/    // The module cache
/******/    var installedModules = {};

/******/    // The require function
/******/    function __webpack_require__(moduleId) {

/******/        // Check if module is in cache
/******/        if(installedModules[moduleId])
/******/            return installedModules[moduleId].exports;

/******/        // Create a new module (and put it into the cache)
/******/        var module = installedModules[moduleId] = {
/******/            exports: {},
/******/            id: moduleId,
/******/            loaded: false
/******/        };

/******/        // Execute the module function
/******/        modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);

/******/        // Flag the module as loaded
/******/        module.loaded = true;

/******/        // Return the exports of the module
/******/        return module.exports;
/******/    }


/******/    // expose the modules object (__webpack_modules__)
/******/    __webpack_require__.m = modules;

/******/    // expose the module cache
/******/    __webpack_require__.c = installedModules;

/******/    // __webpack_public_path__
/******/    __webpack_require__.p = "";

/******/    // Load entry module and return exports
/******/    return __webpack_require__(0);
/******/ })
/************************************************************************/
/******/ ([
/* 0 */
/***/ function(module, exports) {

    function hewwwwww(){
        var hee = "dasdasdasd";
        alert(hee);
    }

/***/ }
/******/ ]);
    </script>
  </head>
  <body>
  <script type="text/javascript" src="main-4e082b2fc9be4cc4a21f.js"></script><script type="text/javascript" src="a-4e082b2fc9be4cc4a21f.js"></script></body>
</html>

相关文章

  • webpack 系统学习(2)

    如何将js的内容进入到html页面中 配置文件如下: 打包生成的html如下:

  • 【01】webpack4.0教程_基础_1

    学习webpack4.0的笔记,循序渐进,后续会再做系统总结 [toc] webpack安装 总结 安装本地的we...

  • webpack学习(2)

    前面一章我们简单的介绍了一下webpack的四个核心概念,现在我们利用这篇文章详细的了解下。 1. 入口起点(En...

  • 2019-11-30

    开篇 很多人都或多或少使用过 webpack,但是很少有人能够系统的学习 webpack 配置,遇到错误的时候就会...

  • webpack2学习

    webpack2学习 webpack2基本介绍 介绍 webpack和gulp一样是一个自动化的构建工具你不想做的...

  • Webpack5 搭建一个简易的 React+TS 开发环境

    之前入行前端系统学习过 Webpack,那时候的版本是 4,当时对 Webpack 的印象就是简单,但绝不易上手,...

  • 2017-07-03

    webpack更好配置 webpack进阶-知乎 webpack 学习 nodejs 学习

  • webpack

    webpack 学习笔记 webpack ? 1、模块化 2、自定义文件或npm install 3、静态文件模块...

  • webpack 系统学习(1)

    简介:webpack是一个给js准备的打包工具,官方的定义也就是一个打包器。它可以把很多的模块打包成很少的静态文件...

  • webpack4.0学习笔记

    一直使用webpack,但没有系统学过,这次边学边记录. 01_webpack4.0学习笔记之前端模块化 02_w...

网友评论

      本文标题:webpack 系统学习(2)

      本文链接:https://www.haomeiwen.com/subject/mpjpiftx.html