HTML:
<button type="button" class="btn btn-primary">Notifications
<span class="badge badge-light"></span>
</button>
python:
def notif():
not_num = False
if count > 0:
return count
else
return not_num
def count():
return 8
我可以通过某种方法将"notif"
函数调用为HTML主体吗?
我想要做的是在HTML按钮中执行"if"
,该按钮告诉我我有多少个通知,如果我没有任何通知,那么它什么也不会显示。
答案 0 :(得分:3)