You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if i make reqeust from browser -> http://127.0.0.1:8000/api/hitcount/66/ hits is not incrementing but if i make request from axios (javascript) every time when i made reqeust, hits is incrementing + 1
The text was updated successfully, but these errors were encountered:
Hello,
here is my django model
class HitCount(models.Model, HitCountMixin):
here is my views
class CustomHitCountDetailView(HitCountDetailView):
model = HitModel
count_hit = True
if i make reqeust from browser -> http://127.0.0.1:8000/api/hitcount/66/ hits is not incrementing but if i make request from axios (javascript) every time when i made reqeust, hits is incrementing + 1
The text was updated successfully, but these errors were encountered: