Amy Wood
Amy Wood

Reputation: 105

PhoneGap Backend Database - Google App Engine DataStore

I have developed a PhoneGap application (HTML5,CSS,JS). The app needs to create product items using a form and then store that information in the gae DataStore. The app also needs to display all the products stored in DataStore.

I am new to both Web Development & Google App Engine. Can you please point me to an example (sample) code that uses PhoneGap & Google App Engine DataStore.

Upvotes: 1

Views: 2268

Answers (1)

proppy
proppy

Reputation: 10504

If using java, you can implement your backend using a REST framework like Restlet, Jersey or Cloud Endpoint

If using python, you can implement you backend using a REST framework like Flask-Restful or Cloud Endpoint.

Alternatively you can consider using something like gwt-phonegap that provide direct integration of phonegap with GWT.

You can call it from Phonegap using your preferred javascript library or XMLHttpRequest.

Upvotes: 2

Related Questions