add formbind package for nested struct form data binding #138
  Add this suggestion to a batch that can be applied as a single commit.
  This suggestion is invalid because no changes were made to the code.
  Suggestions cannot be applied while the pull request is closed.
  Suggestions cannot be applied while viewing a subset of changes.
  Only one suggestion per line can be applied in a batch.
  Add this suggestion to a batch that can be applied as a single commit.
  Applying suggestions on deleted lines is not supported.
  You must change the existing code in this line in order to create a valid suggestion.
  Outdated suggestions cannot be applied.
  This suggestion has been applied or marked resolved.
  Suggestions cannot be applied from pending reviews.
  Suggestions cannot be applied on multi-line comments.
  Suggestions cannot be applied while the pull request is queued to merge.
  Suggestion cannot be applied right now. Please check back later.
  
    
  
    
Add formbind package for nested form data binding
#137
Summary
Introduces a new
formbindpackage to echo-contrib that provides comprehensive support for binding nested structs, arrays, and pointer fields from form data. This enhancement allows developers to seamlessly bind complex, deeply nested web form data (such asuser.profile.address.street=123 Main Storitems[0].name=Product A) directly to Go structs with nested slices, pointer fields, and multiple levels of depth.Changes
user.profile.name)items[0].name,users[1].email)Key Features
Nested Structure Binding
Array and Slice Support
Pointer Field Support
Security Features
items[999999999]attacks)Benefits
Test Plan
go test -raceExamples
Basic Nested Binding
Array Binding
Complex Nested Arrays