最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to export a function with Webpack and use it in an HTML page? - Stack Overflow

programmeradmin1浏览0评论

I have a file called index.js:

"use strict";

var $ = require("jquery");
window.jQuery = $;

export function foo() {
    console.log('hello world');
}

And in the same directory, webpack-config.js:

module.exports = {
    entry: './index.js',
    output: {
        filename: './dist.js'
    },
    mode: "development"
};

And finally I have an index.html file which loads my bundled JavaScript, and tries to use the exported function definition...

<script src="/media/js/dist/dist.js"></script>
<script type='text/javascript'>
    foo();
</script>

When I run webpack, I see no output errors.

But when I load my HTML page, I see:

(index):211 Uncaught ReferenceError: foo is not defined
   at (index):211

What am I doing wrong? The dist.js file is loading perfectly OK.

I have a file called index.js:

"use strict";

var $ = require("jquery");
window.jQuery = $;

export function foo() {
    console.log('hello world');
}

And in the same directory, webpack-config.js:

module.exports = {
    entry: './index.js',
    output: {
        filename: './dist.js'
    },
    mode: "development"
};

And finally I have an index.html file which loads my bundled JavaScript, and tries to use the exported function definition...

<script src="/media/js/dist/dist.js"></script>
<script type='text/javascript'>
    foo();
</script>

When I run webpack, I see no output errors.

But when I load my HTML page, I see:

(index):211 Uncaught ReferenceError: foo is not defined
   at (index):211

What am I doing wrong? The dist.js file is loading perfectly OK.

Share Improve this question asked May 12, 2019 at 19:15 RichardRichard 65.7k135 gold badges356 silver badges571 bronze badges 1
  • Just like you did with jQuery: window.foo = foo; – connexo Commented May 12, 2019 at 23:25
Add a ment  | 

1 Answer 1

Reset to default 12

Add a library property to your output configuration:

module.exports = {
    entry: './index.js',
    output: {
        filename: './dist.js',
        library: 'myLibrary'
    },
    mode: "development"
};

Then in index.js, you should be able to call foo() like so:

myLibrary.foo();

For this to work it's important that the foo() function is being exported with export function and not export default function

发布评论

评论列表(0)

  1. 暂无评论