如何使用grunt http服务器访问区域设置json文件(grunt-contrib-connect)

丹尼斯·G。

我正在尝试使用AngularJS和访问来解析语言环境json文件$resource

这是我加载文件的电话:

angular.module('moneyJinnApp').service('TranslationService', function($resource) {
    this.getTranslation = function($scope, language) {
        var languageFilePath = '/js/i18n/lang_' + language + '.json';
        $resource(languageFilePath).get(function (data) {
            $scope.translation = data;
        });
    };
});

现在,我有一个问题,在grunt的网络服务器中内置的文件不允许我访问该文件。如果我尝试我得到错误

无法获取/i18n/lang_cs.json

这是我的Guntfile.js:

// Generated on 2015-01-21 using generator-angular 0.9.2
    'use strict';

    // # Globbing
    // for performance reasons we're only matching one level down:
    // 'test/spec/{,*/}*.js'
    // use this if you want to recursively match all subfolders:
    // 'test/spec/**/*.js'

    module.exports = function (grunt) {

      // Load grunt tasks automatically
      require('load-grunt-tasks')(grunt);

      // Time how long tasks take. Can help when optimizing build times
      require('time-grunt')(grunt);

      // Configurable paths for the application
      var appConfig = {
        app: require('./bower.json').appPath || 'app',
        dist: 'dist'
      };

      // Define the configuration for all the tasks
      grunt.initConfig({

        // Project settings
        yeoman: appConfig,

        // Watches files for changes and runs tasks based on the changed files
        watch: {
          bower: {
            files: ['bower.json'],
            tasks: ['wiredep']
          },
          js: {
            files: ['<%= yeoman.app %>/scripts/{,*/}*.js'],
            tasks: ['newer:jshint:all'],
            options: {
              livereload: '<%= connect.options.livereload %>'
            }
          },
          jsTest: {
            files: ['test/spec/{,*/}*.js'],
            tasks: ['newer:jshint:test', 'karma']
          },
          styles: {
            files: ['<%= yeoman.app %>/styles/{,*/}*.css'],
            tasks: ['newer:copy:styles', 'autoprefixer']
          },
          gruntfile: {
            files: ['Gruntfile.js']
          },
          livereload: {
            options: {
              livereload: '<%= connect.options.livereload %>'
            },
            files: [
              '<%= yeoman.app %>/{,*/}*.html',
              '.tmp/styles/{,*/}*.css',
              '<%= yeoman.app %>/images/{,*/}*.{png,jpg,jpeg,gif,webp,svg}'
            ]
          }
        },

        // The actual grunt server settings
        connect: {
          options: {
            port: 9000,
            // Change this to '0.0.0.0' to access the server from outside.
            hostname: 'localhost',
            livereload: 35729
          },
          livereload: {
            options: {
              open: true,
              middleware: function (connect) {
                return [
                  connect.static('.tmp'),
                  connect().use(
                    '/bower_components',
                    connect.static('./bower_components')
                  ),
                  connect.static(appConfig.app)
                ];
              }
            }
          },
          test: {
            options: {
              port: 9001,
              middleware: function (connect) {
                return [
                  connect.static('.tmp'),
                  connect.static('test'),
                  connect().use(
                    '/bower_components',
                    connect.static('./bower_components')
                  ),
                  connect.static(appConfig.app)
                ];
              }
            }
          },
          dist: {
            options: {
              open: true,
              base: '<%= yeoman.dist %>'
            }
          }
        },

        // Make sure code styles are up to par and there are no obvious mistakes
        jshint: {
          options: {
            jshintrc: '.jshintrc',
            reporter: require('jshint-stylish')
          },
          all: {
            src: [
              'Gruntfile.js',
              '<%= yeoman.app %>/scripts/{,*/}*.js'
            ]
          },
          test: {
            options: {
              jshintrc: 'test/.jshintrc'
            },
            src: ['test/spec/{,*/}*.js']
          }
        },

        // Empties folders to start fresh
        clean: {
          dist: {
            files: [{
              dot: true,
              src: [
                '.tmp',
                '<%= yeoman.dist %>/{,*/}*',
                '!<%= yeoman.dist %>/.git*'
              ]
            }]
          },
          server: '.tmp'
        },

        // Add vendor prefixed styles
        autoprefixer: {
          options: {
            browsers: ['last 1 version']
          },
          dist: {
            files: [{
              expand: true,
              cwd: '.tmp/styles/',
              src: '{,*/}*.css',
              dest: '.tmp/styles/'
            }]
          }
        },

        // Automatically inject Bower components into the app
    /*    wiredep: {
          options: {
            cwd: '<%= yeoman.app %>'
          },
          app: {
            src: ['<%= yeoman.app %>/index.html'],
            ignorePath:  /\.\.\//
          }
        },
    */
        // Renames files for browser caching purposes
        filerev: {
          dist: {
            src: [
              '<%= yeoman.dist %>/scripts/{,*/}*.js',
              '<%= yeoman.dist %>/styles/{,*/}*.css',
              '<%= yeoman.dist %>/images/{,*/}*.{png,jpg,jpeg,gif,webp,svg}',
              '<%= yeoman.dist %>/styles/fonts/*'
            ]
          }
        },

        // Reads HTML for usemin blocks to enable smart builds that automatically
        // concat, minify and revision files. Creates configurations in memory so
        // additional tasks can operate on them
        useminPrepare: {
          html: '<%= yeoman.app %>/index.html',
          options: {
            dest: '<%= yeoman.dist %>',
            flow: {
              html: {
                steps: {
                  js: ['concat', 'uglifyjs'],
                  css: ['cssmin']
                },
                post: {}
              }
            }
          }
        },

        // Performs rewrites based on filerev and the useminPrepare configuration
        usemin: {
          html: ['<%= yeoman.dist %>/{,*/}*.html'],
          css: ['<%= yeoman.dist %>/styles/{,*/}*.css'],
          options: {
            assetsDirs: ['<%= yeoman.dist %>','<%= yeoman.dist %>/images']
          }
        },

        // The following *-min tasks will produce minified files in the dist folder
        // By default, your `index.html`'s <!-- Usemin block --> will take care of
        // minification. These next options are pre-configured if you do not wish
        // to use the Usemin blocks.
        cssmin: {
          dist: {
            files: [{
              expand: true,
              cwd: '<%= yeoman.dist %>',
              src: 'styles/*.css',
              dest: '<%= yeoman.dist %>'
            }]
          }
        },
        uglify: {
          build: {
            files: [{
                expand: true,
                src: '**/*.js',
                dest: '<%= yeoman.dist %>/scripts',
                cwd: '<%= yeoman.app %>/scripts'
            }]
          },
          options: {
            mangle:false
          },
        },
        // concat: {
        //   dist: {}
        // },

        imagemin: {
          dist: {
            files: [{
              expand: true,
              cwd: '<%= yeoman.app %>/images',
              src: '{,*/}*.{png,jpg,jpeg,gif}',
              dest: '<%= yeoman.dist %>/images'
            }]
          }
        },

        svgmin: {
          dist: {
            files: [{
              expand: true,
              cwd: '<%= yeoman.app %>/images',
              src: '{,*/}*.svg',
              dest: '<%= yeoman.dist %>/images'
            }]
          }
        },

        htmlmin: {
          dist: {
            options: {
              collapseWhitespace: true,
              conservativeCollapse: true,
              collapseBooleanAttributes: true,
              removeCommentsFromCDATA: true,
              removeOptionalTags: true
            },
            files: [{
              expand: true,
              cwd: '<%= yeoman.dist %>',
              src: '**/*.html',
              dest: '<%= yeoman.dist %>'
            }]
          }
        },

        // ngAnnotate tries to make the code safe for minification automatically by
        // using the Angular long form for dependency injection. It doesn't work on
        // things like resolve or inject so those have to be done manually.
        ngAnnotate: {
          dist: {
            files: [{
              expand: true,
             cwd: '<%= yeoman.app %>/scripts',
              src: '**/*.js',
             dest: '<%= yeoman.dist %>/scripts',
            }]
          }
        },

        // Replace Google CDN references
        cdnify: {
          dist: {
            html: ['<%= yeoman.dist %>/*.html']
          }
        },

        // Copies remaining files to places other tasks can use
        copy: {
          dist: {
            files: [{
              expand: true,
              dot: true,
              cwd: '<%= yeoman.app %>',
              dest: '<%= yeoman.dist %>',
              src: [ '**']
            },{

              expand:true,
              cwd:'bower_components',
              dest:'<%= yeoman.dist %>/bower_components',
              src:['**']
            } ,

            {
              expand: true,
              cwd: '.tmp/images',
              dest: '<%= yeoman.dist %>/images',
              src: ['generated/*']
            }, {
              expand: true,
              cwd: 'bower_components/bootstrap/dist',
              src: 'fonts/*',
              dest: '<%= yeoman.dist %>'
            }]
          },
          styles: {
            expand: true,
            cwd: '<%= yeoman.app %>/styles',
            dest: '.tmp/styles/',
            src: '{,*/}*.css'
          }
        },

        // Run some tasks in parallel to speed up the build process
        concurrent: {
          server: [
            'copy:styles'
          ],
          test: [
            'copy:styles'
          ],
          dist: [
            'copy:styles',
            'imagemin',
            'svgmin'
          ]
        },

        // Test settings
        karma: {
          unit: {
            configFile: 'test/karma.conf.js',
            singleRun: true
          }
        }
      });


      grunt.registerTask('serve', 'Compile then start a connect web server', function (target) {
        if (target === 'dist') {
          return grunt.task.run(['build', 'connect:dist:keepalive']);
        }

        grunt.task.run([
          'clean:server',
          'concurrent:server',
          'autoprefixer',
          'connect:livereload',
          'watch'
        ]);
      });

      grunt.registerTask('server', 'DEPRECATED TASK. Use the "serve" task instead', function (target) {
        grunt.log.warn('The `server` task has been deprecated. Use `grunt serve` to start a server.');
        grunt.task.run(['serve:' + target]);
      });

      grunt.registerTask('test', [
        'clean:server',
        'concurrent:test',
        'autoprefixer',
        'connect:test',
        'karma'
      ]);

      grunt.registerTask('build', [
        'clean:dist',
        'concurrent:dist',
        'copy:dist',
        'cssmin',
        'ngAnnotate',
        'uglify',
        'htmlmin'
      ]);

      grunt.registerTask('default', [
        'newer:jshint',
        'test',
        'build'
      ]);
    };

.json文件位于/app/i18n/*.json路径中

有人可以帮我吗?

莫宾尼

这是因为Grunt正在加载的Web服务器不提供sed文件。我会做这样的事情:

在您的grunt配置中:

 livereload: {
        options: {
          open: true,
          middleware: function (connect) {
            return [
              connect.static('data'), // <---- add this line
              connect.static('.tmp'),
              connect().use(
                '/bower_components',
                connect.static('./bower_components')
              ),
              connect.static(appConfig.app)
            ];
          }
        }
      },

然后将您的数据放在应用程序目录外部的数据文件夹中,它将在应用程序加载时提供服务。

然后通过浏览以下内容进行测试: localhost:<port>/data/<file>.json

之后,将您的网址更改为:

    var languageFilePath = 'data/i18n/lang_' + language + '.json';

本文收集自互联网,转载请注明来源。

如有侵权,请联系[email protected] 删除。

编辑于
0

我来说两句

0条评论
登录后参与评论

相关文章

来自分类Dev

grunt-contrib-connect:仅root可访问,仅在CI服务器上

来自分类Dev

grunt-contrib-connect:当浏览器打开时,grunt服务器停止

来自分类Dev

使用grunt-contrib-connect和grunt-contrib-watch进行实时重载

来自分类Dev

使用grunt-contrib-connect和grunt-connect-rewrite删除文件扩展名

来自分类Dev

使用grunt-contrib-connect指定标题

来自分类Dev

grunt-contrib-connect仅与keepalive一起使用

来自分类Dev

grunt-contrib-connect忽略任务选项

来自分类Dev

grunt-contrib-connect服务器无法连接本地主机

来自分类Dev

带livereload的grunt-contrib-watch,带vs,不带grunt-contrib-connect,带livereload

来自分类Dev

如何允许grunt-contrib-connect允许在静态文件上执行POST,PUT,DELETE方法?

来自分类Dev

从grunt-contrib-connect请求对象获取数据

来自分类Dev

grunt-contrib-connect仅适用于keepalive

来自分类Dev

如何仅在需要时使用grunt-contrib-watch和grunt-contrib-coffee编译CoffeeScript?

来自分类Dev

使用grunt-contrib-connect-具有添加的上下文路径的打开页面URL

来自分类Dev

如何使用grunt-contrib-uglify也gzip js文件?

来自分类Dev

grunt-contrib-connect-致命错误:getaddrinfo ENOTFOUND my.website-如何设置自定义URL?

来自分类Dev

通过grunt-contrib-connect在浏览器中显示PDF

来自分类Dev

如何禁用grunt-contrib-cssmin联合?

来自分类Dev

在凉亭中使用grunt-contrib-concat

来自分类Dev

如何在Ubuntu服务器12.04 64中安装grunt-contrib-qunit?

来自分类Dev

带有keepalive的grunt-contrib-connect中间件CORS解决方案

来自分类Dev

如何在Grunt-contrib-requirejs优化器中使用Requirejs-handlebars?

来自分类Dev

如何在Grunt-contrib-requirejs优化器中使用Requirejs-handlebars?

来自分类Dev

如何在不同的文件上使用不同的grunt-contrib-less选项

来自分类Dev

grunt-contrib-watch + sass:如何指定目标文件?

来自分类Dev

如何使grunt-contrib-copy不复制LESS文件?

来自分类Dev

无法使用grunt-contrib-cssmin创建缩小的CSS文件

来自分类Dev

grunt-contrib-watch + grunt-rsync

来自分类Dev

如何从grunt-contrib-imagemin中排除目录

Related 相关文章

  1. 1

    grunt-contrib-connect:仅root可访问,仅在CI服务器上

  2. 2

    grunt-contrib-connect:当浏览器打开时,grunt服务器停止

  3. 3

    使用grunt-contrib-connect和grunt-contrib-watch进行实时重载

  4. 4

    使用grunt-contrib-connect和grunt-connect-rewrite删除文件扩展名

  5. 5

    使用grunt-contrib-connect指定标题

  6. 6

    grunt-contrib-connect仅与keepalive一起使用

  7. 7

    grunt-contrib-connect忽略任务选项

  8. 8

    grunt-contrib-connect服务器无法连接本地主机

  9. 9

    带livereload的grunt-contrib-watch,带vs,不带grunt-contrib-connect,带livereload

  10. 10

    如何允许grunt-contrib-connect允许在静态文件上执行POST,PUT,DELETE方法?

  11. 11

    从grunt-contrib-connect请求对象获取数据

  12. 12

    grunt-contrib-connect仅适用于keepalive

  13. 13

    如何仅在需要时使用grunt-contrib-watch和grunt-contrib-coffee编译CoffeeScript?

  14. 14

    使用grunt-contrib-connect-具有添加的上下文路径的打开页面URL

  15. 15

    如何使用grunt-contrib-uglify也gzip js文件?

  16. 16

    grunt-contrib-connect-致命错误:getaddrinfo ENOTFOUND my.website-如何设置自定义URL?

  17. 17

    通过grunt-contrib-connect在浏览器中显示PDF

  18. 18

    如何禁用grunt-contrib-cssmin联合?

  19. 19

    在凉亭中使用grunt-contrib-concat

  20. 20

    如何在Ubuntu服务器12.04 64中安装grunt-contrib-qunit?

  21. 21

    带有keepalive的grunt-contrib-connect中间件CORS解决方案

  22. 22

    如何在Grunt-contrib-requirejs优化器中使用Requirejs-handlebars?

  23. 23

    如何在Grunt-contrib-requirejs优化器中使用Requirejs-handlebars?

  24. 24

    如何在不同的文件上使用不同的grunt-contrib-less选项

  25. 25

    grunt-contrib-watch + sass:如何指定目标文件?

  26. 26

    如何使grunt-contrib-copy不复制LESS文件?

  27. 27

    无法使用grunt-contrib-cssmin创建缩小的CSS文件

  28. 28

    grunt-contrib-watch + grunt-rsync

  29. 29

    如何从grunt-contrib-imagemin中排除目录

热门标签

归档