質問編集履歴

1

urlを指定したが、エラーが返ってくる旨を記述

2021/02/08 03:23

投稿

fastman
fastman

スコア3

test CHANGED
File without changes
test CHANGED
@@ -64,13 +64,15 @@
64
64
 
65
65
  const XHR = new XMLHttpRequest();
66
66
 
67
+ const url = location.pathname
68
+
67
- XHR.open("POST", `rooms/:room_id/messages`, true); // このURLの記述方法がわからない
69
+ XHR.open("POST", url, true);
68
70
 
69
71
  XHR.responseType = 'json';
70
72
 
71
73
  XHR.send(formData);
72
74
 
73
- XHR.onload = () => {
75
+ XHR.onload = () => { // 204 no contentエラーが返ってくる
74
76
 
75
77
  if (XHR.status != 200) {
76
78