svgui/pyjs/jsonrpc/README.txt
author Edouard Tisserant
Sun, 04 Aug 2013 22:55:12 +0900
changeset 1283 f3cfe1ff917e
parent 728 e0424e96e3fd
permissions -rw-r--r--
More optimization attemps in type handling
These classes are intended for use server-side.

e.g. in a django view.py :

    from pyjs.jsonrpc.django import JSONService, jsonremote

    jsonservice = JSONRPCService()

    @jsonremote(jsonservice)
    def test(request, echo_param):
         return "echoing the param back: %s" % echo_param