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は機能していないようです。助言がありますか?
ありがとう