Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
shuvo1729885y@dontPanic yea. Now I'm back with full energy and I believe I'll succeed this time. Actually, I'm working on a mobile version of a social media.
-
mdude7275y@shuvo1729 whenever I fail hard, I take a piece of paper and check the code by hand. It never fails
-
Take a close look at the URL input field of your browser. Does it say stackoverflow.com? No? Thought so.
Related Rants
-
frasza7Weekend weekend weekend. Yay! After hard week at uni, took a day off and I am in bed since morning 😁 So I d...
-
frankswildyears6Tested out my first app and it worked beautifully. I’m a projectionist and I made this to give me a constant...
-
Papi16Before a month I wrote I would like to create my own pastebin-like service. And here it is... Pastitude! End...
I can't count likes form my database for an specific post. I made a function that will count all the like by "post.id". It shows the like on the web page when I clicked on like button and it disappears when I refresh the browser. but likes are still remaining in the database but it won't appear on the webpage.
Here are the flask code:
def like_count(post_id):
if request.form.get('like') != None:
if (Like.query.filter_by(post_id=post_id).all())==[]:
return 0
else:
return Like.query.filter_by(post_id=post_id).count()
else:
return 0
def dislike_count(post_id):
if request.form.get('dislike') != None:
if (Dislike.query.filter_by(post_id=post_id).all())==[]:
return 0
else:
return Dislike.query.filter_by(post_id=post_id).count()
else:
return 0
Here are the html code:
<!--dislike-->
<form method="POST" action="">
<input name="dislike" value="1" class="input-style" >
<input value="{{post.id}}" name="post_id" class="input-style">
<button class="fas fa-thumbs-down" class="like-button" >
<div class="like-count" >
{{dislike_count(post.id)}}
</div>
</button>
</form>
<!--like-->
<form method="POST" action="" >
<input name="like" value="1" class="input-style" >
<input name="post_id" value="{{post.id}}" class="input-style" >
<button class="fas fa-thumbs-up" class="like-button" >
<div class="like-count" >
{{like_count(post.id)}}
</div>
</button>
</form>
question
sqlalchemy
jinja2
flask