-1
找到所有XML節點具有類似的NodeJS我如何通過元素
<root>
<a>
<b>test1</b>
<c>
<b>test2</b>
<b>test3</b>
</c>
</a>
<b>test4</b>
</root>
的XML我想檢索包含<b>
元素的所有值的數組:
expectedOutput = ["test1", "test2", "test3", "test4"]
會是什麼最好的NodeJS庫以及如何使用它?謝謝!