首页 文章

使用webpack在Django服务器上运行React App

提问于
浏览
0

我正在使用Django作为后端构建一个Web应用程序,并希望实现一个ReactJS框架前端 . 我现在拥有的每个应用程序都可以正常运行,彼此独立 . 我也实现了webpack,它似乎正确配置,因为它将在localhost上运行我的ReactJS应用程序 . 作为webpack的新手(以及一般的web开发)我不确定如何让React在Django本地服务器上运行(127.0.0.1:8000) . 我从很多论坛中了解到,javascript文件需要捆绑,然后读入django应用程序 . 以下是相关文件:

package.json

{
  "name": "package.json",
  "version": "1.0.0",
  "description": "This is the private repository for the USA Baseball analytics team.",
  "main": "index.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "build": "SET NODE_ENV=development babel src -d lib",
    "build-prod": "SET NODE_ENV=development babel src -d lib",
    "start": "webpack-dev-server"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/USAB-Analytics/BaldEagle.git"
  },
  "author": "",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/USAB-Analytics/BaldEagle/issues"
  },
  "homepage": "https://github.com/USAB-Analytics/BaldEagle#readme",
  "dependencies": {
    "react": "^16.2.0",
    "express": "^4.16.3",
    "react-dom": "^16.4.1",
    "react-sortable-hoc": "^0.8.3",
    "yarn": "^1.7.0",
    "react-prop-types": "^0.4.0",
    "semantic-ui-react": "^0.77.1",
    "react-router-dom": "^4.2.2"
  },
  "devDependencies": {
    "babel": "^6.23.0",
    "babel-core": "^6.26.3",
    "babel-loader": "^7.1.4",
    "babel-preset-env": "^1.6.1",
    "babel-preset-stage-1": "^6.24.1",
    "babel-preset-es2015": "^6.24.1",
    "babel-preset-react": "^6.24.1",
    "html-webpack-plugin": "3.0.4",
    "style-loader": "^0.19.1",
    "css-loader": "^0.28.10",
    "jsx-loader": "^0.13.2",
    "react": "^16.4.0",
    "webpack": "^4.10.2",
    "webpack-bundle-tracker": "^0.3.0",
    "webpack-cli": "^3.0.4",
    "webpack-command": "^0.2.1",
    "webpack-dev-server": "^3.1.4"
  },
  "keywords": []
}

webpack.config.js

var path = require("path");
const webpack = require('webpack');
const HtmlWebpackPlugin = require('html-webpack-plugin');
//var BundleTracker = require('webpack-bundle-tracker')

const port = process.env.PORT || 3000;

process.env.NODE_ENV = 'production';

module.exports = {
 mode: 'development',
 entry: './frontend/src/index.js',
 output: {
   filename: 'bundle.[hash].js'
 },
 devtool: 'inline-source-map',

 module: {
   rules: [

     // First Rule
     {
       test: /\.(js)$/,
       exclude: /node_modules/,
       use: ['babel-loader']
     },

     // Second Rule
     {
       test: /\.css$/,
       use: [
         {
           loader: 'style-loader'
         },
         {
           loader: 'css-loader',
           options: {
             modules: true,
             camelCase: true,
             sourceMap: true
           }
         }
       ]
     }
   ]
 },
 plugins: [
   new HtmlWebpackPlugin({
     title: 'Custom template',
     template: './webapp/templates/webapp/home.html',
   })
 ],
 devServer: {
   host: 'localhost',
   port: port,
   historyApiFallback: true,
   open: true
 }

};

frontend/src/index.js

import React from 'react';
import ReactDOM from 'react-dom';
import './css/main.css';
import { BrowserRouter as Router, Switch, Route, Link } from "react-router-dom";

import {HomePage} from './components/HomePage.js'
import {Bios} from './components/Bios.js'
import {Bio} from './components/Bio.js'
import {NavBar} from './components/NavBar.js'
import {TeamsList} from './components/TeamsList.js'
import {TOSBios} from './components/TOSBios.js'
import {NT18Bios} from './components/NT18Bios.js'
import {CNTBios} from './components/CNTBios.js'
import {NT15Bios} from './components/NT15Bios.js'

class App extends React.Component {
  render(){
    var styles = {
      'marginLeft': '210px'
    }
    return (
      <Router>
        <div className="col-sm-10">
          <NavBar />
            <div style={styles}>
            <Switch>
              <Route exact path="/" component={HomePage} />
              <Route path="/bios/:id" component={Bio} />
              <Route path="/bios/" component={Bios} />
              <Route path="/teams/tos/:id" component={Bio} />
              <Route path="/teams/cnt/:id" component={Bio} />
              <Route path="/teams/nt18/:id" component={Bio} />
              <Route path="/teams/nt15/:id" component={Bio} />
              <Route path="/teams/cnt/" component={CNTBios} />
              <Route path="/teams/nt18/" component={NT18Bios} />
              <Route path="/teams/nt15/" component={NT15Bios} />
              <Route path="/teams/tos/" component={TOSBios} />
              <Route path="/teams/" component={TeamsList} />
            </Switch>
            </div>
        </div>
      </Router>
    );
  }
}


ReactDOM.render(
    <App />,
  document.getElementById('root')
);

webapp/templates/webapp/home.html

<!-- {% extends "webapp/header.html" %} -->
{% load render_bundle from webpack_loader %}
<html>
<head>
    <meta charset="UTF-8">
    <title>React with Django</title>
</head>

<body>
    <div id="root"></div>
</body>
</html>

3 回答

  • 0

    这些不应该在同一台服务器上运行 . 如果你想连接它们,你应该能够创建配置文件,并说如果 生产环境 我点击的网址是xx.com/users,否则如果是开发它是localhost:8000 / users . 为什么你需要在同一台服务器上运行?

  • 0

    我们使用django-webpack-loader在django模板中呈现我们的webpack包(对于Vue应用程序,但它是相同的基本想法) .

  • 0

    您已将webpack配置为开发模式 . 这意味着您运行webpack开发服务器 . 但是您需要将前端应用程序构建到一个包中,然后将此捆绑包用于服务器端 . 只需删除 devServer 部分即可 . 此外,您可以删除此 process.env.NODE_ENV = 'production'; 并将 mode 更改为 production . 此操作会将 process.env.NODE_ENV 设置为 productionhttps://webpack.js.org/concepts/mode/) .

    如果您需要在开发模式下测试您的应用程序,您可以使用后端的地址将package.json添加 proxy 并分别运行前后 .

    Solution:

    添加npm命令: "build:prod": "<your_build_command> && mv <output_path>/index.html <path_to_backend>/<app_name>/templates && mv <output_path>/* <path_to_backend>/static"

    将其添加到您的Django应用程序设置:

    STATIC_URL = '/static/'
    STATICFILES_DIRS = (
      os.path.join(BASE_DIR, 'static'),
    )
    

相关问题