小例子
费了好力气才有所了解
在service下创建这样一个module----service_langxw_lxw (注意“没有serivice目录就创建这样一个目录)
个人很不理解为什么要一个api对应这样一个module,这样module会膨胀的很大
官方文档:http://zotonic.com/documentation/911/resource-api 看了好久也没全明白
20 -module(service_langxw_lxw).
21 -author("Arjan Scherpenisse <[email protected]>").
22
23 -svc_title("Retrieve a full export of an object.").
24 -svc_needauth(false).
26 -export([process_get/2, process_post/2]).
27
28 -include_lib("zotonic.hrl").
29
30
31 process_post(_ReqData, Context) ->
32 ?DEBUG(_ReqData),
33 ?DEBUG(Context),
34 ?DEBUG({"z_context:get_q(id, Context)", z_context:get_q("id", Context)}),
35
36 try
37 z:m()
38 catch
39 _:_ ->
40 undefined
41 end,
42 %"OK".
43 mochijson:encode("sdf").
44
45
46 process_get(_ReqData, Context) ->
47 ?DEBUG(_ReqData),
48 ?DEBUG(Context),
49 ?DEBUG({"z_context:get_q(id, Context)", z_context:get_q("id", Context)}),
50
51 try
52 z:m()
53 catch
54 _:_ ->
55 undefined
56 end,
57 %"OK".
58 mochijson:encode("sdf").
59 %case z_context:get_q("id", Context) of
60 % undefined ->