@saverio是成功的在回答關於Tagging from Scratch: the Tag Cloud Issue從頭標記:在查詢數據庫問題
現在我想的標籤系統與jQuery的tokenInput連接到創建這個數據庫查詢問題查找動態標記爲http://railscasts.com/episodes/258-token-fields-revised。
- 我的猜測是這是對Posgresql數據庫的查詢問題。
- 我有PostgreSQL的正確安裝
- jQuery的tokenInput是其對的application.js地方
//= require jquery.tokeninput
- 不知怎的,它可以加載了已經在數據庫上的標籤,但它無法查詢同一動態如下列出pictures.js.coffee代碼。
以下所有相關的適用範圍:
pictures.js.coffee
jQuery ->
$('#picture_tag_tokens').tokenInput '/tags.json'
theme: 'facebook'
prePopulate: $('#picture_tag_tokens').data('load')
/views/pictures/_form
<div class="field">
<%= f.label :tag_tokens, "Tags (separated by commas)" %><br />
<%= f.text_field :tag_tokens, data: {load: @picture.tags} %>
</div>
這裏我的邏輯迷失了一下
/models/picture.rb
class Picture < ActiveRecord::Base
attr_accessible :description, :title, :tag_tokens
has_many :taggings
has_many :tags, through: :taggings
attr_reader :tag_tokens
#The **below** is the relevant part for the #view/pictures/_form
def tag_tokens=(tokens)
self.tag_ids = Tag.ids_from_tokens(tokens)
end
def self.tagged_with(name)
Tag.find_by_name!(name).pictures
end
def self.tag_counts
Tag.select("tags.*, count(taggings.tag_id) as count").
joins(:taggings).group("tags.id")
end
def tag_list
tags.map(&:name).join(", ")
end
def tag_list=(names)
self.tags = names.split(",").map do |n|
Tag.where(name: n.strip).first_or_create!
end
end
end
下面我能弄清楚,我不能夠查詢數據庫
/models/tag.rb
class Tag < ActiveRecord::Base
attr_accessible :name
has_many :taggings
has_many :pictures, through: :taggings
def self.tokens(query)
tags = where("name like ?", "%#{query}%")
if tags.empty?
[{id: "<<<#{query}>>>", name: "New: \"#{query}\""}]
else
tags
end
end
def self.ids_from_tokens(tokens)
tokens.gsub!(/<<<(.+?)>>>/) { create!(name: $1).id }
tokens.split(',')
end
end
,所以是我怎麼設置我的標籤控制器行爲
#controllers/tags_controller.rb
class TagsController < ApplicationController
def index
@tags = Tag.all
respond_to do |format|
format.html
format.json { render json: @tags.tokens(params[:q]) }
end
end
end
所以,爲什麼我無法查詢PostgreSQL和我不能夠創建或查找動態?