GET http://127.0.0.1:8000/dist/bundle.js net::ERR_ABORTED 404(未找到),尽管编译成功。(vuejs+django webapp)

Posted

技术标签:

【中文标题】GET http://127.0.0.1:8000/dist/bundle.js net::ERR_ABORTED 404(未找到),尽管编译成功。(vuejs+django webapp)【英文标题】:GET http://127.0.0.1:8000/dist/bundle.js net::ERR_ABORTED 404 (Not Found), despite compiling successfully.(vuejs+django webapp) 【发布时间】:2019-10-11 22:12:14 【问题描述】:

我正在编写cutecats 教程,在集成vue+django 时遇到了麻烦。我在编译时没有收到任何错误,bundle.js 已创建,我可以在我的 IDE 中看到它,但该包在浏览器上返回 404 错误。

这是我遵循的教程 - https://medium.com/@jrmybrcf/how-to-build-api-rest-project-with-django-vuejs-part-i-228cbed4ce0c

这是我的 webpack.config.js

var path = require('path')
var webpack = require('webpack')
var BundleTracker = require('webpack-bundle-tracker')
var WriteFilePlugin = require('write-file-webpack-plugin')

module.exports = 
  entry: './src/main.js',
  output: 
    path: path.resolve(__dirname, './dist'),
    publicPath: '/dist/',
    filename: 'bundle.js'
  ,
  plugins: [
    new BundleTracker(filename: 'webpack-stats.json'),
    new WriteFilePlugin()
    ],
  module: 
    rules: [
      
        test: /\.css$/,
        use: [
          'vue-style-loader',
          'css-loader'
        ],
      ,
      
        test: /\.scss$/,
        use: [
          'vue-style-loader',
          'css-loader',
          'sass-loader'
        ],
      ,
      
        test: /\.sass$/,
        use: [
          'vue-style-loader',
          'css-loader',
          'sass-loader?indentedSyntax'
        ],
      ,
      
        test: /\.vue$/,
        loader: 'vue-loader',
        options: 
          loaders: 
            // Since sass-loader (weirdly) has SCSS as its default parse mode, we map
            // the "scss" and "sass" values for the lang attribute to the right configs here.
            // other preprocessors should work out of the box, no loader config like this necessary.
            'scss': [
              'vue-style-loader',
              'css-loader',
              'sass-loader'
            ],
            'sass': [
              'vue-style-loader',
              'css-loader',
              'sass-loader?indentedSyntax'
            ]
          
          // other vue-loader options go here
        
      ,
      
        test: /\.js$/,
        loader: 'babel-loader',
        exclude: /node_modules/
      ,
      
        test: /\.(png|jpg|gif|svg)$/,
        loader: 'file-loader',
        options: 
          name: '[name].[ext]?[hash]'
        
      
    ]
  ,
  resolve: 
    alias: 
      'vue$': 'vue/dist/vue.esm.js'
    ,
    extensions: ['*', '.js', '.vue', '.json']
  ,
  devServer: 
    historyApiFallback: true,
    noInfo: true,
    overlay: true
  ,
  performance: 
    hints: false
  ,
  devtool: '#eval-source-map'


if (process.env.NODE_ENV === 'production') 
  module.exports.devtool = '#source-map'
  // http://vue-loader.vuejs.org/en/workflow/production.html
  module.exports.plugins = (module.exports.plugins || []).concat([
    new webpack.DefinePlugin(
      'process.env': 
        NODE_ENV: '"production"'
      
    ),
    new webpack.optimize.UglifyJsPlugin(
      sourceMap: true,
      compress: 
        warnings: false
      
    ),
    new webpack.LoaderOptionsPlugin(
      minimize: true
    )
  ])

我收到一个错误 - index:13 GET http://127.0.0.1:8000/dist/bundle.js net::ERR_ABORTED 404(未找到)

【问题讨论】:

Webpack conf 与此错误无关。显示静态文件和静态文件文件夹结构的 Django 设置部分。编译后是否将bundle文件复制到django static文件夹? 【参考方案1】:

在教程中,公共路径设置为STATIC_URL = '/public/'

尝试打开http://127.0.0.1:8000/public/bundle.js 而不是http://127.0.0.1:8000/dist/bundle.js。

如果可行,请将 publicPath'/dist/' 更改为 '/public/'

【讨论】:

以上是关于GET http://127.0.0.1:8000/dist/bundle.js net::ERR_ABORTED 404(未找到),尽管编译成功。(vuejs+django webapp)的主要内容,如果未能解决你的问题,请参考以下文章

GET http://127.0.0.1:8000/dist/bundle.js net::ERR_ABORTED 404(未找到),尽管编译成功。(vuejs+django webapp)

Django学习手册 - 基于requests API验证

Django Rest 框架:XMLHttpRequest 无法加载 http://127.0.0.1:8000/xyz/api/abc

获取 http://127.0.0.1:8000/storage/profiles/ 404(未找到)

CBV到DRF视图函数/快速了解DRF

Django - 为开发 Web 服务器显示 404 页面 (http://127.0.0.1:8000/)