前提・実現したいこと
Djangoでwebアプリを作成しており、template内でVue.jsを使用しています。
axiosを使ってデータベースにアクセスしており、データの受け渡し自体は上手くいっているようなのですが、.then()の中からthis.$dataにアクセスしようとすると何故かundifinedになってしまいます。
発生している問題・エラーメッセージ
ReferenceError: gooded_articles is not defined
該当のソースコード
######myscript.js
javascript
1new Vue({ 2 el: '#article', 3 delimiters: ['[[ ', ']]'], 4 data: { 5 gooded_articles: [], 6 }, 7 created: function () { 8 console.log(this.gooded_articles); //(1) 9 axios.get('/snsapp/gooded_articles/') 10 .then(function (response) { 11 console.log(this.gooded_articles); //(2) 12 var article_ids = response.data.article_ids; 13 console.log(article_ids); //(3) 14 for (var i = 0; i < article_ids.length; i++) { 15 gooded_articles.push(article_ids[i]); 16 } 17 }) 18 .catch(function (error) { 19 console.log(error); 20 }) 21 }, 22});
######urls.py
python
1urlpatterns = [ 2 path('gooded_articles/', views.GoodedArticles.as_view(), name='gooded_articles'), 3]
######views.py
python
1class GoodedArticles(APIView): 2 authentication_classes = (authentication.SessionAuthentication,) 3 permission_classes = (permissions.IsAuthenticated,) 4 5 def get(self, request): 6 good_instances = Good.objects.filter(pusher=request.user) 7 article_ids = [] 8 for good_instance in good_instances: 9 gooded_article = good_instance.article 10 article_ids.append(gooded_article.id) 11 data = { 12 'article_ids': article_ids, 13 } 14 return JsonResponse(data, safe=False)
試したこと
console.logの結果
(1) : [ob: Observer] length: 0
(2) : undefined
(3) : (2) [1, 3]
参考にしたコードでは.then()内からもthis.$dataにアクセスできていたので原因が分かりません。
よろしくお願いします。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/06/02 00:09