angularjs – Grunt Connect代理:404未找到

我正在使用 grunt-connect-proxy“^ 0.2.0”从我的angularjs应用程序代理api.该项目由yeoman角度发电机启动.

我按照说明here但是当使用代理时,我得到:

Failed to load resource: the server responded with a status of 404 (Not Found)
http://localhost:9000/api/users

我的代理配置:

connect: {
  options: {
    port: 9000,// Change this to '0.0.0.0' to access the server from outside.
    hostname: 'localhost',livereload: 35729
  },proxies: [{
    context: '/api',// the context of the data service
    host: 'localhost',// wherever the data service is running
    port: 8080,// the port that the data service is running on
    https: false,xforward: false
  }],

我的中间件:

livereload: {
    options: {
      open: true,base: '',middleware: function (connect,options) {
        var middlewares = [];

        middlewares.push(require('grunt-connect-proxy/lib/utils').proxyRequest);

        middlewares.push(connect.static('.tmp'));
        middlewares.push(connect.static('test'));
        middlewares.push(connect().use(
            '/bower_components',connect.static('./bower_components')
          ));
        middlewares.push(connect.static(appConfig.app));

        return middlewares;
      }
    }
  },

我的服务任务

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','wiredep','concurrent:server','autoprefixer:server','configureProxies:server','connect:livereload','watch'
  ]);
});

编辑
localhost:8080 / users目前通过Postman返回403,因此API正在运行.

没有直接回答你的问题,而是提供解决方案(因为没有其他人回答)…你有没有试过npm模块connect-modrewrite

这正是你想要做的.

相关文章

AngularJS 是一个JavaScript 框架。它可通过 注:建议把脚本放在 元素的底部。这会提高网页加载速度,因...
angluarjs中页面初始化的时候会出现语法{{}}在页面中问题,也即是页面闪烁问题。出现这个的原因是:由于...
AngularJS 通过被称为指令的新属性来扩展 HTML。AngularJS 指令AngularJS 指令是扩展的 HTML 属性,带有...
AngularJS 使用表达式把数据绑定到 HTML。AngularJS 表达式AngularJS 表达式写在双大括号内:{{ expres...
ng-repeat 指令可以完美的显示表格。在表格中显示数据 {{ x.Name }} {{ x.Country }} 使用 CSS 样式为了...
$http是 AngularJS 中的一个核心服务,用于读取远程服务器的数据。读取 JSON 文件下是存储在web服务器上...