Я играю с 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, похоже, не работает. Есть предложения?
Спасибо