我必须使用REST API中的OAuth调用SugarCRM中的一些数据。 我正在使用此link
答案 0 :(得分:0)
如果你想要来自另一个模块的数据,那么在这样的js控制器中调用api。
app.api.call('GET', app.api.buildURL('Accounts/' + this.model.attributes.accounts_lab_coc_1accounts_ida), null, {
success: _.bind(function (response) {
//response comes back from your api, maybe you want to set some value on your model or alter a response?
console.log(response);
}
}, this);
}, this)
});
},