我有这个功能,我想让它与我的观点一起工作,我怎么能这样做?
def PlaySound(self):
while(True):
if GPIO.input(Snare) == False:
os.system("path/to/the/sound")
return ("Is activated")
def view(request):
return render(request, "page.html")
答案 0 :(得分:1)
如果PlaySound
不是课程的方法,那么您就不需要self
。使用def PlaySound():
。
def PlaySound():
...
然后,您可以在返回响应之前调用视图中的方法。
def view(request):
PlaySound()
return render(request, "page.html")