Hello. I am working on a project (Front js, back - Django) On the client side I get an array containing certain IDs. The question is how to transfer this array from JavaScript to Django so that I can continue working with it in Django. in js I have an array repl = [1, 4, 6, 44, 77, 98, ..., n]; I want to get on the side of django a variable containing the same values. Tell me how this can be implemented?

0