0

我在检索作为 blob 存储在旧版 Oracle 数据库中的图像时遇到问题。当我去http://server/images/id/type我收到一个no implicit conversion of Symbol into Integer错误。

我有以下设置:

宝石文件

gem 'rails', '3.2.13'
gem 'activerecord-oracle_enhanced-adapter'
gem 'ruby-oci8'

桌子

CREATE TABLE "SCHEMA"."IMAGE_TABLE" 
(   "IMG_TYPE_SEQ_NO" NUMBER(12,0), 
"IMG_TYPE" VARCHAR2(10 BYTE), 
"IMG_DESC" VARCHAR2(60 BYTE), 
"IMG_LENGTH" NUMBER, 
"IMG_BLOB" BLOB
);

模型

class Image < ActiveRecord::Base
self.table_name = 'schema.image_table'

def self.image_by_id_and_type(id, type)
  where(
    'img_type_seq_no = :id and img_type = :type',
     id: id, type: type
  )
end

控制器

class ImagesController < ApplicationController

  def show_image
    @image = Image.image_by_id_and_type(params[:id], params[:type])
    send_data @image[:img_blob], type: 'image/gif', disposition: 'inline'
  end

end

我试过使用它send_data @image.img_blob并得到一个undefined method错误。

我究竟做错了什么?

谢谢,克里斯

更新:

我想知道是否存在类型转换的问题。Blob 图像是通过一个将其转换为 java 字节数组的 java swing 应用程序保存的。这可能是问题吗?如果是这样,我如何将 java 字节数组转换为 send_data 可以理解的东西?

4

2 回答 2

0

这是一个疯狂的猜测。请尝试

def show_image
    @image = GiftCardImage.image_by_id_and_type(params[:id].to_i, params[:type])
    send_data @image[:img_blob], type: 'image/gif', disposition: 'inline'
end

在你的模型中

class Image < ActiveRecord::Base
self.table_name = 'schema.image_table'

def self.image_by_id_and_type(id, type)
  where("img_type_seq_no = ? and img_type = ?", id, type)
end
于 2013-07-16T16:49:46.490 回答
0
@image = Image.image_by_id_and_type(params[:id], params[:type])

正在返回一个 ActiveRecord::Relation 对象,因此为了从中获取实际值,我必须调用first.

send_data @image.first[:img_blob], type: 'image/gif', disposition: 'inline'
于 2013-07-18T17:58:27.727 回答