- Process JSON escaped characters correctly in JSON parser
- Now properly handles all standard JSON escape sequences (
\"
,\\
,\/
,\b
,\f
,\n
,\r
,\t
,\uXXXX
) - Fixed handling of Unicode escape sequences
- Improved error handling for invalid escape sequences
- Now properly handles all standard JSON escape sequences (
- Port rack/query_parser.rb to make better compatible with rails/rack
- Port rack/spec_utils.rb
- Merge JSON with other structured data
- Rename
axum_params::ParamsValue
toaxum_params::Value
, doesn't need use it directly
- Path parameters
- Query parameters
- Form data
- Multipart form data
- JSON body
- All parameter types can be processed simultaneously
- Every parameter type supports structured data (arrays and objects)
- Nested parameter handling similar to Rails' strong parameters
- Support for deeply nested structures with arrays and objects
- Files can be placed at any position in the parameter tree, e.g.
post[attachments][][file]
- Seamlessly mix files with other data types in the same request
- Automatic parameter parsing and type conversion
- Handle complex forms with multiple file uploads in nested structures
Example structure:
post: {
title: String,
content: String,
tags: Vec<String>,
cover: UploadFile,
attachments: Vec<{
file: UploadFile,
description: String
}>
}