RELATEED CONSULTING
相关咨询
选择下列产品马上在线沟通
服务时间:8:30-17:00
你可能遇到了下面的问题
关闭右侧工具栏

新闻中心

这里有您想知道的互联网营销解决方案
webpack与babel解析module.exports差异

来来来代码先上

十载的观山湖网站建设经验,针对设计、前端、开发、售后、文案、推广等六对一服务,响应快,48小时及时工作处理。营销型网站的优势是能够根据用户设备显示端的尺寸不同,自动调整观山湖建站的显示方式,使网站能够适用不同显示终端,在浏览器中调整网站的宽度,无论在任何一种浏览器上浏览网站,都能展现优雅布局与设计,从而大程度地提升浏览体验。创新互联建站从事“观山湖网站设计”,“观山湖网站推广”以来,每个客户项目都认真落实执行。

js/main.js

import * as aliasPerson from "./person.js";
import defaultPerson from "./person.js";
console.log("alias person is below ...");
console.log(aliasPerson);
console.log(aliasPerson.prototype);
console.log("default person is below ...");
console.log(defaultPerson);
console.log(defaultPerson.prototype);

js/person.js

function Person(){}
Person.nickname = "this is a person";
Person.birthday = "1900-01-01";
Person.prototype.eat = function(){};
module.exports = Person;

webpack.config.js

var entryFilePath = "./js/main.js";

var webpackConfig = {
   entry: entryFilePath,
   output: {
      filename: "result.js"
   },
   module: {
      // rules: [{test: /\.js$/,loader: 'babel-loader'}] 
   }
};
module.exports = webpackConfig;

.babelrc

{
  "presets": [
      "es2015",
      "stage-3"
    ],
    "plugins": [
      ["transform-runtime",
        {
          "helpers": false,
          "polyfill": false,
          "regenerator": true,
          "moduleName": "babel-runtime"
        }]
    ]
}

package.json

{
    "scripts": {
        "build": "webpack"
    },
    "devDependencies": {
        "babel-core": "^6.26.3",
        "babel-loader": "^7.1.4",
        "babel-plugin-transform-runtime": "^6.23.0",
        "babel-preset-es2015": "^6.24.1",
        "babel-preset-stage-3": "^6.24.1",
        "babel-runtime": "^6.26.0",
        "webpack": "^3.10.0",
        "webpack-dev-server": "^2.9.7"
    }
}

一 不使用babel做转义

直接执行 npm run build 生成result.js

执行 node result.js

webpack与babel解析module.exports差异

import * as aliasPerson from "./person.js";

import defaultPerson from "./person.js";

执行结构完全一样

二 使用babel做转义

取消如下注释.

webpack与babel解析module.exports差异

执行 npm run build 生成result.js

执行 node result.js

webpack与babel解析module.exports差异

使用 import * as aliasPerson from "./person.js";

多了 一个default属性,并且 aliasPerson.prototype 为 undefined


原因如下

webpack与babel解析module.exports差异

import * as aliasPerson from "./person.js";

当引入的 ./person.js 模块不为es 模块的时候(obj.__esModule === false)

babel会将 module.exports 所指向的对象的非继承属性遍历并附加到 newObj对象中,

并且 newObj.default = module.exports


新闻名称:webpack与babel解析module.exports差异
新闻来源:http://sczitong.cn/article/jjspgs.html