Ara Park
Ara Park
Ok, I rollback the "ErrStatusRequestEntityTooLarge"
Hi @pablochacin. How about supporting recursive transformation as follows ```go func NewCustomConverter(r *goja.Runtime) func (interface{}) goja.Value { return func (i interface{}) goja.Value { // You can use "r.ToValue()" if you...
@pablochacin Oh, I misunderstood. So instead of passing the function, why don't you turn the interface over ```go type Converter interface { ToValue(i interface{}) (Value, bool) // Maybe ExportTo could...
Is it correct that the custom converter defined when converting a type such as structure or map is not called? @pablochacin When converting the deep type in the toValue function,...
Thanks for the good suggestions. i add comments for the HTTP status codes.
I have redefined my own Criterion and Repository interface to include all difference. I looked inside implementations such as ReactiveRepository, found a direct query request method used by ReactiveRepository, and...