rails初心者です。
現在練習で簡単な掲示板を製作しています。
投稿者のIPアドレスを取得したいのですが、今風のおすすめの方法など教えて頂きたいです。
==========
<追記>
Postにcommentを紐づけた実装をしています。
・問題
Post投稿者のIDは取得でき、データーベースに保存できたのだが、
Comment投稿者のIDを取得することができない。
コメントはsaveされるのだが、ipカラムにコメント投稿者のipが入っていない状態。
以下が該当と予想されるコードです。
▼commnets_controller.rb
class CommentsController < ApplicationController def create @post = Post.find(params[:post_id]) @comment = @post.comments.create(comment_params) @comment.ip = request.remote_ip p request.remote_ip p @comment.ip respond_to do |format| if @comment.valid? format.html { redirect_to post_path(@post), notice: 'コメントが完了しました!!' } else format.html { redirect_to post_path(@post), notice: 'コメントに失敗しました。ニックネームとコメントを入れてください。' } end end end private def comment_params params.require(:comment).permit(:commenter, :body) end end
▼_form.html.erb(コメントの投稿フォームです。postのshow.html.erbに紐付けられています。)
<%= form_for( [@post, @post.comments.build] ) do |f| %> <div class="field"> <%= f.label :commenter, "ニックネーム" %> <%= f.text_field :commenter,placeholder: :"名無しさん" %> </div> <div class="field"> <%= f.label :body, "コメント" %> <%= f.text_area :body, cols: 60, rows: 3 %> </div> <div class="actions"> <%= f.submit "コメント投稿" %> </div> <% end %>
▼commentテーブルのカラムです
=> Comment(id: integer, commenter: string, body: text, post_id: integer, created_at: datetime, updated_at: datetime, ip: string)
<追記 2016.01.21>
以下のコードでmd5でハッシュ化したidの上8桁の取得が完了しました!!
文法ミスあれば教えていただきたいです!
▼投稿者のID
<%= Digest::MD5.hexdigest("request.remote_ip.to_s + #{@post.created_at.strftime("%Y%m%d")} + #{@post.id}")[0,8] %>
▼コメンターのID
名前:<%= comment.commenter %> <%= comment.created_at.strftime("%y/%m/%d(#{%w(日 月 火 水 木 金 土)[comment.created_at.wday]}) %H:%M:%S") %> ID:<%= Digest::MD5.hexdigest("request.remote_ip.to_s + #{comment.created_at.strftime("%Y%m%d")} + #{@post.id}")[0,8] %> <%= simple_format comment.body %>
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2017/01/19 01:05
2017/01/19 01:18
2017/01/19 01:30
2017/01/19 01:40
2017/01/20 09:29