Changes between Version 2 and Version 3 of Ticket #36245
- Timestamp:
- Mar 11, 2025, 9:04:17 AM (22 hours ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #36245 – Description
v2 v3 12 12 For instance, with `request.body`, a developer working with JSON data would need to write 13 13 14 ` 14 {{{ 15 15 import json 16 16 data = json.loads(request.body) 17 17 user_name = data.get('name') 18 ` 18 }}} 19 19 20 20 With 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 {{{ 22 user_name = request.data.get('name') 23 }}} 24 I am creating the test cases and patches for this implementation, then will PR it 25 23 26 **Implementation Plan:** 24 27 - Write test cases