hirolibe / hiro-blogapp

0 stars 0 forks source link

気づき(if (!content)) #54

Open hirolibe opened 1 month ago

hirolibe commented 1 month ago

問題点

対策案

if (!content.trim()) {
  window.alert('コメントを入力してください')
} else {
  axios.post(`/articles/${articleId}/comments`, {
    comment: {content: content}
  })