Skip to content

Instantly share code, notes, and snippets.

@xb4dc0d3
Created March 19, 2020 06:47
Show Gist options
  • Save xb4dc0d3/ec8f6817960f2a06fd910598ad9ac062 to your computer and use it in GitHub Desktop.
Save xb4dc0d3/ec8f6817960f2a06fd910598ad9ac062 to your computer and use it in GitHub Desktop.
from rest_framework import serializer
# Bad (if you search "result" maybe the related result more than 100 occurence)
result = serializer.serialize(data_mahasiswa, 100)
# Good
result_json_mahasiswa = serializer.serialize(data_mahasiswa, 100)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment