Changes between Version 2 and Version 3 of Ticket #36245


Ignore:
Timestamp:
Mar 11, 2025, 9:04:17 AM (22 hours ago)
Author:
Adya
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #36245 – Description

    v2 v3  
    1212For instance, with `request.body`, a developer working with JSON data would need to write
    1313
    14 `
     14{{{
    1515import json
    1616data = json.loads(request.body)
    1717user_name = data.get('name')
    18 `
     18}}}
    1919
    2020With the proposed `request.data`, this simplifies to something like:
    21 `user_name = request.data.get('name')`
    22 I am creating the test cases and patches for this implementation then PR it
     21{{{
     22user_name = request.data.get('name')
     23}}}
     24I am creating the test cases and patches for this implementation, then will PR it
     25
    2326**Implementation Plan:**
    2427- Write test cases
Back to Top