「Django筆記」修訂間的差異

跳至導覽 跳至搜尋
增加 106 位元組 、 2022年6月3日 (五) 04:38
行 27: 行 27:


<pre>
<pre>
from django.http import Http404, JsonResponse
from django.http import Http404, HttpResponse
from . import config # import the config variables in the file './config.py'.
from . import config # import the config variables in the file './config.py'.


行 42: 行 42:
         raise Http404() # throw 404
         raise Http404() # throw 404
     else:
     else:
         return JsonResponse(user_json)
         # return json file with setting content_type
      return HttpResponse(json.dumps(user_json), content_type="application/activity+json")
</pre>
</pre>


導覽選單