我正在玩 Mojo SDK,我想获取所有联系人。
this.controller.serviceRequest('palm://com.palm.contacts/crud', {
method: 'listContacts',
parameters: {
limit: 100
},
onSuccess: this.handleListResponse.bind(this),
onFailure: function(errResp){
Mojo.Log.info(errResp.errorText)
}.bind(this),
onerror: function(errResp){
Mojo.Log.info(errResp.errorText)
}.bind(this)
});
这是我现在拥有的,但我没有得到任何回报。而且 Mojo.Log.info 似乎不起作用。有什么建议么?
谢谢