We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
<?xml version="1.0"?> <d:multistatus xmlns:d="DAV:" xmlns:s="http://sabredav.org/ns" xmlns:oc="http://owncloud.org/ns" xmlns:nc="http://nextcloud.org/ns"> <d:response> <d:href>/remote.php/dav/files/admin/benjamin-lehman-xnTcEJm5IZw-unsplash.jpg</d:href> <d:propstat> <d:prop> <nc:system-tags> <nc:system-tag oc:can-assign="true" oc:id="321" oc:user-assignable="true" oc:user-visible="true">Test</nc:system-tag> </nc:system-tags> </d:prop> <d:status>HTTP/1.1 200 OK</d:status> </d:propstat> </d:response> </d:multistatus>
Currently, the fast-xml-parser ignore attributes. A quick test, passing the following options would allow us to retrive the attributes like so
fast-xml-parser
attributeNamePrefix: "", ignoreAttributes: false, textNodeName: "text",
I think adding a proper method to process those would be best, so we can keep the namespaces and avoid conflicts?
The text was updated successfully, but these errors were encountered:
PR incoming
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Xml example
Issue
Currently, the
fast-xml-parser
ignore attributes.A quick test, passing the following options would allow us to retrive the attributes like so
I think adding a proper method to process those would be best, so we can keep the namespaces and avoid conflicts?
The text was updated successfully, but these errors were encountered: