質問編集履歴

5

追記

2020/07/18 04:17

投稿

study_111
study_111

スコア82

test CHANGED
File without changes
test CHANGED
@@ -300,4 +300,4 @@
300
300
 
301
301
  ```
302
302
 
303
- axios.postメソッドには、``` {headers: headers},```を追しました
303
+ axios.postメソッドには、``` {headers: headers},```を引数にしました

4

追記

2020/07/18 04:17

投稿

study_111
study_111

スコア82

test CHANGED
File without changes
test CHANGED
@@ -287,3 +287,17 @@
287
287
  )
288
288
 
289
289
  ```
290
+
291
+ ### 追記2
292
+
293
+ [こちら](https://manikos.github.io/django-axios-and-csrf-token)の記事を参考に以下の部分をApp.vueに追記しましたが、エラーは解決されていない状況です。
294
+
295
+ ```
296
+
297
+ import axios from 'axios';
298
+
299
+ const headers = {"X-CSRFTOKEN": "<csrf_token_very_long_string_goes_here>"}
300
+
301
+ ```
302
+
303
+ axios.postメソッドには、``` {headers: headers},```を追記しました。

3

コード修正

2020/07/18 04:16

投稿

study_111
study_111

スコア82

test CHANGED
File without changes
test CHANGED
@@ -266,7 +266,7 @@
266
266
 
267
267
  axios.post(
268
268
 
269
- 'http://127.0.0.1:8000/security_tool/check/',
269
+ 'http://127.0.0.1:8000/polls/check/',
270
270
 
271
271
  {
272
272
 

2

追記

2020/07/18 03:47

投稿

study_111
study_111

スコア82

test CHANGED
File without changes
test CHANGED
@@ -255,3 +255,35 @@
255
255
 
256
256
 
257
257
  どなたか、エラー解決の為、アドバイス頂けましたら幸いです。
258
+
259
+
260
+
261
+ ### 追記
262
+
263
+ [Qiita](https://qiita.com/att55/items/2154a8aad8bf1409db2b)記事を参考に、axiosに```withCredentials: true```を追記しましたが```POST http://127.0.0.1:8000/polls/check/ 403 (Forbidden)```が表示されている状態です。
264
+
265
+ ```
266
+
267
+ axios.post(
268
+
269
+ 'http://127.0.0.1:8000/security_tool/check/',
270
+
271
+ {
272
+
273
+ name:this.name,
274
+
275
+ comment:this.comment
276
+
277
+ },
278
+
279
+ {
280
+
281
+ withCredentials: true
282
+
283
+ },
284
+
285
+
286
+
287
+ )
288
+
289
+ ```

1

文法修正

2020/07/18 03:47

投稿

study_111
study_111

スコア82

test CHANGED
File without changes
test CHANGED
@@ -251,3 +251,7 @@
251
251
  ### 補足情報(FW/ツールのバージョンなど)
252
252
 
253
253
  エディター:VScode,OS:Mac OS
254
+
255
+
256
+
257
+ どなたか、エラー解決の為、アドバイス頂けましたら幸いです。