Getting DataCloneError while using instance of a class as return value of RPC method
Error message: DataCloneError: Could not serialize object of type "st". This type does not support serialization.
Hono route
RPC class
5 Replies
What is a
Logger
?This is what services look like:
Logger is a custom logger, wrapped around console.log
this is how Payments class looks like too
cc @Hard@Work
works well when i don't pass services.logger, does this mean i can't pass any variable to the class instance ? @Hard@Work
also works when i pass logger as a function, a bit weird that passing a class instance to the RPC stub does not work because the structured clone algorithm can copy a class instance
solution:
Is
Logger
extending RpcTarget
too? If not, that might be your issueIt does not extend RpcTarget
Yeah, try making it extend
RpcTarget
, and see if it works