前提
Ruby on Rails 6.0.0
で掲示板アプリを作っています。
非同期通信でコメントを投稿できるようにしたいです。
アドバイスを頂けると嬉しいです。
###実現したいこと
post.js
でtopicId
の値を取得したいです。
posts/index
8行目の<div class="post" data-id = <%= @topic.id %>>
からidを渡します。
・post.js 4~8行目
JavaScript
1const posts = document.querySelectorAll(".post"); 2const topicId = posts.getAttribute("data-id"); 3const formData = new FormData(document.getElementById("form")); 4const XHR = new XMLHttpRequest(); 5XHR.open("POST", `/topics/${topicId}/posts`, true);
発生している問題・エラーメッセージ
・post.js 4, 5行目
const posts = document.querySelectorAll(".post");
でclass = post
を取得して、
そこからconst topicId = posts.getAttribute("data-id");
でdata-id
を取得しようと試みました。
しかし、topicId
の値が取得できずコンソールにエラーが表示されます。
Console
1Uncaught TypeError: post.getAttribute is not a function
該当のソースコード
・post.js
JavaScript
1function post() { 2 const submit = document.getElementById("submit"); 3 submit.addEventListener("click", (e) => { 4 const posts = document.querySelectorAll(".post"); 5 const topicId = posts.getAttribute("data-id"); 6 const formData = new FormData(document.getElementById("form")); 7 const XHR = new XMLHttpRequest(); 8 XHR.open("POST", `/topics/${topicId}/posts`, true); 9 XHR.responseType = "json"; 10 XHR.send(formData); 11 XHR.onload = () => { 12 if (XHR.status != 200) { 13 alert(`Error ${XHR.status}: ${XHR.statusText}`); 14 return null; 15 } 16 const item = XHR.response.post; 17 const list = document.getElementById("list"); 18 const formText = document.getElementById("comment"); 19 const HTML = ` 20 <div class="post"> 21 <span class="name"> 22 名無し 23 </span> 24 <span class="time"> 25 ${item.created_at} 26 </span> 27 <p class=comment>${item.comment}</p> 28 </div>`; 29 30 list.insertAdjacentHTML("beforebegin", HTML); 31 formText.value = ""; 32 }; 33 e.preventDefault(); 34 }); 35 } 36 window.addEventListener("load", post);
・posts/index.html.erb
index
1<h1><%= link_to 'トップページ', root_path, class:"top-page" %></h1> 2 3<div> 4 <h3><%= @topic.title %></h3> 5</div> 6 7<% @posts.each do |post| %> 8 <div class="post" data-id = <%= @topic.id %>> 9 <span class="name"> 10 名無し 11 </span> 12 <span class="time"> 13 <%= post.created_at %> 14 </span> 15 <p class=comment><%= post.comment %></p> 16 </div> 17<% end %> 18 19<div id="list"> 20</div> 21 22<%= form_with(model: [@topic, @post], id: "form" ) do |f| %> 23 <div class="form-input"> 24 <div> 25 <%= f.text_area :comment, class: 'form-comment', id: "comment" %> 26 </div> 27 </div> 28 <%= f.submit '投稿する', class: 'form-submit', id: "submit" %> 29<% end %>
・controllers/posts_controller.rb
Controller
1class PostsController < ApplicationController 2 def index 3 @post = Post.new 4 @topic = Topic.find(params[:topic_id]) 5 @posts = @topic.posts 6 end 7 8 def create 9 @topic = Topic.find(params[:topic_id]) 10 @post = @topic.posts.new(post_params) 11 if @post.save 12 render json:{ post: @post } 13 else 14 @posts = @topic.posts 15 render :index 16 end 17 end 18 19 private 20 21 def post_params 22 params.require(:post).permit(:comment) 23 end 24end
・config/routes.rb
route
1Rails.application.routes.draw do 2 root to: 'topics#index' 3 resources :topics, only: [:index, :new, :create] do 4 resources :posts, only: [:index, :create] 5 end 6end
・models/post.rb
model
1class Post < ApplicationRecord 2 belongs_to :topic 3 4 validates :comment, presence: true 5end
・models/topic.rb
model
1class Topic < ApplicationRecord 2 has_many :posts 3 4 validates :title, presence: true 5end
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/01/16 07:17