Re: Real-time dashboard method after delivering restapi from outside

2021-06-15 Thread Ryan Nowakowski
On June 14, 2021 1:46:29 AM CDT, "이경현" wrote: >It is currently returning after receiving an api request from another >system. Is this API request to another system initiated from Django on the back end or in JavaScript on the front end? -- You received this message because you are subscri

Re: Real-time dashboard method after delivering restapi from outside

2021-06-15 Thread Derek
At a guess, I'd say you will need Django Channels - many blogs and tutorials out there, but here is one good worked example: https://blog.logrocket.com/django-channels-and-websockets/ On Monday, 14 June 2021 at 15:32:51 UTC+2 lkh...@gmail.com wrote: > It is currently returning after receiving a

Real-time dashboard method after delivering restapi from outside

2021-06-14 Thread 이경현
It is currently returning after receiving an api request from another system. I want to update the dashboard to Ajax after returning the request, but I can't find a way. Can you tell me how to send a signal from javascript or how to transfer it to JsonResponse? I don't know how to give it to yo