使用 Mailboxer 创建内部消息系统,用户可以从基本配置文件列表中向另一个用户发送消息(对于那些创建它们的用户)。
显示basic_profiles(专家)列表的索引正在显示,但创建新消息的链接未传递参数来创建新消息。
这是列出基本配置文件的专家索引以及当前用户向其基本配置文件所在的用户发送新消息的链接:
<div style="margin-top:100px;">
<h3>Experts</h3>
<% BasicProfile.all.each do |basic_profile| %>
<div>
<p style="padding-top:20px;"> <img src="<%= basic_profile.picture_url %>"
style="float: left;margin: 5px;">
<span style="font-size:14px;"><b>
<%= basic_profile.first_name %> <%= basic_profile.last_name %></b></span></><br>
<b><i><%= basic_profile.headline %></i></b><br>
<%= basic_profile.location %><br>
<%= basic_profile.industry %><br>
<%= basic_profile.specialties %><br>
<%= button_to "Send a message", new_message_path(@user) %></p>
</div>
<% end %>
</div>
这是专家控制器:
class ExpertsController < ApplicationController
def index
@basic_profiles = BasicProfile.all
@user = User.all
end
end
这是消息控制器:
class MessagesController < ApplicationController
# GET /message/new
def new
@user = User.find_by_email(params[:user])
@message = current_user.messages.new
end
# POST /message/create
def create
@recipient = User.find_by_email(params[:user])
current_user.send_message(@recipient, params[:body], params[:subject])
flash[:notice] = "Message has been sent!"
redirect_to :conversations
end
end
这是一条新消息的视图:
<div style="margin-top:200px;">
Send a message to
<%= @user.email %>
<%= form_tag({controller: "messages", action: "create"}, method: :post) do %>
<%= label_tag :subject %>
<%= text_field_tag :subject %>
<%= label :body, "Message text" %>
<%= text_area_tag :body %>
<%= hidden_field_tag(:user, "#{@user.id}") %>
<%= submit_tag 'Send message', class: "btn btn-primary" %>
<% end %>
</div>
以下是消息路由中的内容:
resources :messages do
collection do
post 'new/:user', to: 'messages#create'
end
member do
post :reply
post :trash
post :untrash
post :new
end
正在使用设计。
我想知道为什么没有将参数传递给视图以获取新消息。