Implementing push notification using chrome in Django

后端 未结 2 1381
粉色の甜心
粉色の甜心 2020-12-17 06:21

I have learned to implement push notifications for a Web Application using chrome https://developers.google.com/web/updates/2015/03/push-notifications-on-the-open-web?hl=en

2条回答
  •  时光取名叫无心
    2020-12-17 07:03

    Follow this method...

    • put the sw.js file in template folder
    • configure view to serve as static file

      #urls
      url(r'^sw(.*.js)$', views.sw_js, name='sw_js'),
      
      #views
      from django.views.decorators.cache import never_cache
      from django.template.loader import get_template
      @never_cache
      def sw_js(request, js):
          template = get_template('sw.js')
          html = template.render()
          return HttpResponse(html, content_type="application/x-javascript")
      

提交回复
热议问题