当前位置:  开发笔记 > 编程语言 > 正文

webpack编译后无法访问变量

如何解决《webpack编译后无法访问变量》经验,为你挑选了1个好方法。

webpack编译后我无法访问变量.我需要它,因为我正在使用这个变量在onclick中调用函数.

代码就像

function DetailClass() {
  this.add = function() {
    console.log(1);
    }
}

var Detail = new DetailClass();

Webpack将此代码包含到eval()中

在HTML中,我称之为

Add



1> DDRamone..:

在您的webpack配置中,您必须指定output.libraryoutput.libraryTarget.

这是一个指南:https://webpack.github.io/docs/configuration.html#output-library

对于以下配置:

...
output:{
  ...
  library: 'MyLib',
  libraryTarget: 'var'
}
...

您将能够像以下一样使用它:

Add

推荐阅读
手机用户2402851335
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有