ruby-on-rails - 带 rails 的 ionic 中的 CORS 问题

标签 ruby-on-rails angularjs ionic-framework cors

我正在尝试使用 ionic 和后端作为 Rails 的示例项目。当我使用 ionic serve 启动 ionic server 并提交我的示例表单时

XMLHttpRequest 无法加载 http://localhost:3000/signup。对预检请求的响应未通过访问控制检查:请求的资源上不存在“Access-Control-Allow-Origin” header 。因此不允许访问源“http://localhost:8100”。响应具有 HTTP 状态代码 404。

尝试了一些我在谷歌上得到的答案,但无法通过它。 下面是我的 app.js 代码 index.html 和 ionic.project 文件代码。

angular.module('starter', ['ionic'])

.run(function($ionicPlatform) {
  $ionicPlatform.ready(function() {
    if(window.cordova && window.cordova.plugins.Keyboard) {
      cordova.plugins.Keyboard.hideKeyboardAccessoryBar(true);
      cordova.plugins.Keyboard.disableScroll(true);
    }
    if(window.StatusBar) {
      StatusBar.styleDefault();
    }
  });
})

.constant('ApiEndpoint',  'http://localhost:3000/')

.config(function($stateProvider, $urlRouterProvider) {
  $stateProvider
  .state('signUp',{
    cache: false,
    url: "/signUp",
    templateUrl: "templates/signUp.html",
    controller: 'ExampleCtrl'
  }) 

  $urlRouterProvider.otherwise("/signUp");
})

.controller('ExampleCtrl', ['$scope','$http','ApiEndpoint', function ($scope, $http, ApiEndpoint) {

  $scope.registrationForm = {};

  $scope.signUp = function(){
    console.log($scope.registrationForm);
    console.log(ApiEndpoint);
     $http.post(ApiEndpoint + "signup", {a: 1}).then(function(result){
       console.log(result);
       $scope.registrationForm = {};
     }, function(error){
       console.log(error);
       $scope.registrationForm = {};
     })
  }
}])


<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
    <meta http-equiv="Content-Security-Policy" content="default-src *; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' 'unsafe-eval'">
    <title></title>

    <link href="lib/ionic/css/ionic.css" rel="stylesheet">
    <link href="css/style.css" rel="stylesheet">

    <!-- IF using Sass (run gulp sass first), then uncomment below and remove the CSS includes above
    <link href="css/ionic.app.css" rel="stylesheet">
    -->

    <!-- ionic/angularjs js -->
    <script src="lib/ionic/js/ionic.bundle.js"></script>

    <!-- cordova script (this will be a 404 during development) -->
    <script src="cordova.js"></script>

    <!-- your app's js -->
    <script src="js/app.js"></script>
  </head>
  <body ng-app="starter" animation="slide-left-right-ios7">
    <ion-pane>
      <ion-nav-bar class="nav-title-slide-ios7 bar-stable">
        <ion-nav-back-button></ion-nav-back-button>
      </ion-nav-bar>
      <ion-nav-view>
      </ion-nav-view>
    </ion-pane>
  </body>

</html>

{
  "name": "kranthi_web",
  "app_id": "",
  "proxies": [
    {
      "path": "/api",
      "proxyUrl": "http:localhost:3000/"
    }
  ]
}

谁能告诉我我哪里做错了

最佳答案

CORS (Cross Origin Resource Sharing)策略旨在防止对不同域的 Assets 进行 XML 请求。

基本上,如果您通过 XML 从不同的域/服务器请求资源,您需要确保在该服务器上有相应的 CORS 策略来处理它。


默认情况下,Rails 会阻止响应任何外部 XML 请求。修复它的唯一方法是通过您自己的 CORS 策略允许资源。

rack-cors gem 是最好的:

#config/application.rb
# ...

config.middleware.insert_before 0, "Rack::Cors" do
  allow do
    origins '*'
    resource '*', :headers => :any, :methods => [:get, :post, :options]
  end
end

如果您为您的域(IE 本地主机或其他)设置以上内容,您应该能够从您的前端 JS 访问您的后端。

...请记住,使用 Angular 或其他 JS 类型的框架,您每次都会发送 XML 请求。

关于ruby-on-rails - 带 rails 的 ionic 中的 CORS 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34333007/

相关文章:

ruby-on-rails - 如何使用 docker 捆绑安装本地路径 gem?

jquery - 在 <select> <option> 中添加图像的最佳方式

angularjs - Angular-UI 路由器 - 解决不等待 promise 解决?

javascript - Slick - 如何在悬停时使用暂停?

android - Android 模拟器中不显示 ionic 图标

android - Ionic run android 似乎可以运行,但是应用程序没有在手机上启动,为什么?

ruby-on-rails - rails 4.1。 Heroku ActiveRecord::StatementInvalid (PG::UndefinedFunction: ERROR: operator does not exist: numeric - character varying

ruby-on-rails - 在 rake 任务中使用 rails logger,rails 5

ruby-on-rails - 关注不在 Rails 5 中加载

ios - CFBundleDocumentType 在 myproject-Info.plist 文件中不起作用