PhoneGap XML Parser?

后端 未结 1 645
醉梦人生
醉梦人生 2020-12-18 06:19

I\'ve been searching a really really long time for an XML Parser usable with PhoneGap. Is there a way to use this http://www.edumobile.org/iphone/iphone-programming-tutorial

相关标签:
1条回答
  • 2020-12-18 06:28

    Rule of thumb about Phonegap: for the most part anything you can do in the browser using Javascript, you can do in Phonegap using Javascript with a couple of nice bonus API calls. See Phonegap API Doc and Phonegap community plugin repository (Note if you absolutely need some additional functionality from iPhone or Android or whatever platform the repo would be the place to go asking about it).

    So Javascript XML is what you are looking for.

    • An introduction to parsing xml in javascript
    • Explaination of xml parsing natively with javascript
    • A list of xml parsing javascript librarys

    Or alternatively if you have options for formats, JSON is probably your best bet.

    0 讨论(0)
提交回复
热议问题