我的rails api没有返回所需的值

时间:2016-06-07 16:02:06

标签: ruby-on-rails api-design

您好我正在尝试写一个api,但我遇到控制器无法返回“hi”的问题

控制器:

class ApisController < ApplicationController
  before_action :set_api, only: [:show, :edit, :update, :destroy]

  # GET /apis
  # GET /apis.json

  def alertdump

    respond_to do |format|
        format.html { render html: 'hi' }
        format.json { render json: "hi" }
    end
  end

路线:

  resources :apis do
    collection do
      post 'alertdump/:fullalert', :action=> 'alertdump'
    end
  end

我得到了这个(这是模型'api'的第一个元素)

{"id":1,"created_at":"2016-06-07T15:05:17.897Z","updated_at":"2016-06-07T15:05:17.897Z"}

1 个答案:

答案 0 :(得分:0)

当你说你正在为api编写代码时,你不需要回复html请求,你可以尝试这个来发送json响应。

origOrderArr[i].match("^.*\\|" + movingReportInstID + "$")