On Sun, Jan 7, 2018 at 7:44 PM, Ronnie Raney <theroni...@gmail.com> wrote:

>
> def random_post(request):
>     posts_ids = Post.objects.all().values_list("id", flat=True)
>     random_obj = Post.objects.get(id=random.choice(posts_ids))
>     context = {'random_obj': random_obj,}
>     return render(request, 'blog/random_post.html', context)
>
> Is “”id”” actually post_id in my case?
>

*Model*: I created a model called Post with all the typical fields,
> including a unique autofield. My intention was to randomly select a pk
> using this autofield. I thought about using a property to do some of the
> querying/logic for my random functionality, but I'm not sure if this is the
> best way to do it.
>

It should be your pk, if you did it the "standard way" should be "id", the
idea is to sample one from all your existing pks - whatever it is.

This is a view right? not part of the model?
>

Yup


>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/django-users/b1080eca-fd1c-407f-bd26-46f3740a603f%40googlegroups.com
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CA%2BFDnh%2Bt-ScM5TMTSmv0%2By1G6ho5t1MLhfZsdFAjckQZfg-ogg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to