Multiple parse calls clutter the handler.root - how to avoid? #65
-
I am using your library and it's working well for 1 parse call I added the function converting the xml string to lua table for that purpose:
now, when I do a second call to that function, the first parsed data is still in the handler root, even if declared local I tried to add something like
but parsing then fails How to use your library to parse repetitive xml strings to lua table, but without 'historic data' of previous parses? Thx, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
sorry, just found the solution is a rvious post/issue : using |
Beta Was this translation helpful? Give feedback.
sorry, just found the solution is a rvious post/issue : using
handler=handler:new()
Thx
C.