我嘗試使用Django視圖中的類。Python/Django - 沒有名爲
sync.py
import requests
class Sync:
def do():
r = requests.post('http://192.168.1.7/api/report_x')
print(r.response)
views.py
import sync
def index(request):
s = Sync()
s.do()
return HttpResponse("Hello, this is index")
當我從瀏覽器訪問索引我得到:
全局名稱 '同步' 是未定義
我在做什麼錯?
將第一行改爲'from from sync import sync' – TheDarkKnight