Uncaught ReferenceError:未在webpack JS捆绑包中定义FUNCTION

问题描述 投票:0回答:1

我最近开始使用Webpack来管理我的软件包,并且从已编译的JS捆绑包调用函数时遇到了一些问题。

我的目标是在网站上使用pixi.js和fullpage.js,可以通过CDN很好地完成工作,但是一直在使用Webpack来学习并紧跟时代发展,等等。

当我调用由Webpack编译的外部库的相关函数时收到错误。

enter image description here

package.json

    "name": "aspect",
    "version": "1.0.0",
    "description": "Aspect Store landing page",
    "main": "index.js",
    "license": "MIT",
    "devDependencies": {
        "webpack": "^4.41.5",
        "webpack-cli": "^3.3.10",
        "@babel/core": "^7.7.7",
        "@babel/preset-env": "^7.7.7",
        "autoprefixer": "^9.7.3",
        "babel-loader": "^8.0.6",
        "postcss": "^7.0.26",
        "postcss-cli": "^6.1.3",
        "postcss-loader": "^3.0.0"
    },
    "dependencies": {
        "jquery": "^3.4.1",
        "fullpage.js": "^3.0.8",
        "pixi.js": "^5.2.0",
        "tailwindcss": "^1.1.4"
    },
    "scripts": {
        "dev": "postcss css/tailwind.css -o public/build/tailwind.css webpack --mode development",
        "build": "webpack --mode production"
    }
}

webpack.config.js

var webpack = require('webpack');
var path = require('path');

module.exports = {
    plugins: [
        new webpack.ProvidePlugin({
            $: 'jquery',
            jQuery: 'jquery'
        })
    ],


    module: {
        rules: [{
            test: /\.css$/,
            //exclude: /node_modules/,
            use: [{
                    loader: 'babel-loader',
                    options: {
                        presets: ['@babel/preset-env']
                    }
                },
                {
                    loader: 'style-loader',
                },
                {
                    loader: 'css-loader',
                    options: {
                        importLoaders: 1,
                    }
                },
                {
                    loader: 'postcss-loader'
                }

            ],
        }]

    }
}

index.js

window.jQuery = $;
window.$ = $;

import fullpage from 'fullpage.js';
import * as PIXI from 'pixi.js';

index.php

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Aspect</title>
    <link rel="stylesheet" type="text/css" href="public/build/tailwind.css">
    <script src="../dist/main.js"></script>
    <!--<script src="https://cdnjs.cloudflare.com/ajax/libs/pixi.js/5.1.3/pixi.min.js"></script>-->


</head>
<body> 
<main id="aspect">
    <div class="section text-indigo-200">
        <div class="object-center" id="aspectContainer"></div>
    </div>
    <div class="section text-indigo-200">Some section</div>
</main> 

<script type="text/javascript">
    const app = new PIXI.Application({
        width: window.innerWidth, height: window.innerHeight
    });
    document.getElementById('aspectContainer').appendChild(app.view);

let bol = false;

// create a texture from an image path
const texture = PIXI.Texture.from('images/aspect_logo.png');

// create a new Sprite using the texture
const logo = new PIXI.Sprite(texture);

// center the sprites anchor point
logo.anchor.set(0.5);

// move the sprite to the center of the screen
logo.x = app.screen.width / 2;
logo.y = app.screen.height / 2;
logo.blendMode = PIXI.BLEND_MODES.ADD;

app.stage.addChild(logo);

</script>

<script>
$(document).ready(function() {
    new fullpage("#aspect", {
        verticalCentered: true,
        scrollOverflow: true
    });
    fullpage_api.setAllowScrolling(true);
});
</script>
</body>
</html>
webpack package webpack-4 fullpage.js pixi.js
1个回答
0
投票

需要将函数公开到页面,然后在此线程中回答一个仅能解决问题的方法(stackoverflow.com/a/34358513/12458187)

© www.soinside.com 2019 - 2024. All rights reserved.