Changes between Initial Version and Version 1 of DeveloperGuidelines/WebServices


Ignore:
Timestamp:
12/31/08 08:21:57 (16 years ago)
Author:
Fran Boon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelines/WebServices

    v1 v1  
     1DeveloperGuidelines
     2
     3== Web Services ==
     4
     5We want to be able to access data from the database exported as JSON for easy use within Javascript clients.[[BR]]
     6This is very easy within Web2Py since 1.55:
     7{{{
     8# Designed to be called via AJAX to be processed within JS client
     9def display_feature_group_features_json():
     10    list=db(db.gis_feature_group.id==t2.id).select(db.gis_feature_group.features).json()
     11    response.view='list_plain.html'
     12    return dict(list=list)
     13}}}
     14
     15----
     16DeveloperGuidelines