Karen Ring
Posts: 0
Joined: Thu Apr 03, 2014 5:13 pm

How to add contacts from app. Then access them from page. Local storage.

I've been reviewing the tutorials but I cannot find what I need.
I want each user to be able to add a few contact phone numbers that are stored in their contacts.
Then be able to access the contacts from a page in the app.
Any recommendations?

Yurii Orishchuk
Posts: 0
Joined: Fri Feb 14, 2014 8:20 am

How to add contacts from app. Then access them from page. Local storage.

Hi Karen,

Here is a brief plan for this goal:

1 Create DB collection "Contacts" (type: string, value: string, user(pointer to user))

2 When user adds new contacts - just add new rows(with create REST service) to this collection with fields you need.

  1. When you need get these contacts - just use "list/query" service with where request parameter to filter all contacts with current user.

    Also here is a base tutorial that describes how to use create/list/query/delete services: http://devcenter.appery.io/tutorials/...

    Regards.

Return to “Issues”