We know that django has CommaSeperated model field. But how can we pass commaSeparated string to Django GET parameter.
Whenever i try to pass something like below as GET parameter:
1,2,3,4
I receive using below code in django view
request.GET.get('productids','')
It ends up like below in django view.
'1,2,3,4'
Its ends up adding quotes around the array.
Please any Django experts help me with this issue.