我必须处理旧的 XML 样式 api。
我想使用现代 JS 框架,例如 Ember,或者可能是 Angular,甚至 Meteor,但我不确定会发生什么,因为我必须使用 XML 数据,而这些框架现在基于 JSON。
示例请求:
<?xml version="1.0" encoding="UTF-8"?>
<OrderXML>
<CustomerID>3</CustomerID>
<Password>Webgistix</Password>
<Order>
<ReferenceNumber>ABC123</ReferenceNumber>
<Company>Test Company</Company>
<Name>Joe Smith</Name>
<Address1>123 Main St.</Address1>
<Address2></Address2>
<Address3></Address3>
<City>Olean</City>
<State>NY</State>
<ZipCode>14760</ZipCode>
<Country>United States</Country>
<Email>info@webgistix.com</Email>
<Phone>1-123-456-7890</Phone>
<ShippingInstructions>Ground</ShippingInstructions>
<OrderComments>Test Order</OrderComments>
<Approve>0</Approve>
<Item>
<ItemID>example-item-1</ItemID>
<ItemQty>1</ItemQty>
</Item>
</Order>
示例响应:
<?xml version="1.0" encoding="UTF-8"?>
<Completed>
<Success>True</Success>
<OrderID>12345</OrderID>
<BackOrder>False</BackOrder>
</Completed>
我如何处理这个问题的任何例子?