Uncaught ReferenceError: FUNCTION не определена в пакете webpack JS - PullRequest
0 голосов
/ 06 января 2020

Я недавно начал использовать Webpack для управления своими пакетами и столкнулся с некоторыми проблемами при вызове функций из моего скомпилированного пакета JS.

Я намереваюсь использовать pixi. js и полную страницу. js на веб-сайте и может быть выполнено нормально через CDN, но он использует Webpack, чтобы учиться и идти в ногу со временем, и т. Д. c.

Получаются ошибки при вызове соответствующих функций внешнего библиотеки, скомпилированные Webpack.

enter image description here

пакет. 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>

1 Ответ

0 голосов
/ 08 января 2020

Нужно было выставить функцию на странице, следуя ответу в этой теме, который сработал просто хитрость (stackoverflow.com/a/34358513/12458187)

...