Changes between Version 4 and Version 5 of Jsonrpc
- Timestamp:
- Jun 4, 2009, 12:33:51 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Jsonrpc
v4 v5 14 14 {{{ 15 15 myproject/myapp/views.py: 16 17 from jsonrpc import JsonRpc, publicmethod 16 18 17 19 class MyRpcMethods(object): … … 66 68 >>> 4 67 69 68 rpc. read_diary().addCallback(function(secrets) {70 rpc.callRemote("read_diary").addCallback(function(secrets) { 69 71 console.log(secrets); 70 72 });