Angularjs   发布时间:2022-04-20  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了angularjs – Grunt Connect代理:404未找到大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用 grunt-connect-proxy“^ 0.2.0”从我的angularjs应用程序代理api.该项目由yeoman角度发电机启动. @H_772_1@我按照说明here但是当使用代理时,我得到:

Failed to load resource: the server responded with a status of 404 (Not Found)
http://localhost:9000/api/users
@H_772_1@我的代理配置:

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
  }],
@H_772_1@我的中间件:

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;
      }
    }
  },
@H_772_1@我的服务任务

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'
  ]);
});
@H_772_1@编辑
localhost:8080 / users目前通过Postman返回403,因此API正在运行.

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

大佬总结

以上是大佬教程为你收集整理的angularjs – Grunt Connect代理:404未找到全部内容,希望文章能够帮你解决angularjs – Grunt Connect代理:404未找到所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。