2016-04-27 69 views
0

我必须使用REST API中的OAuth调用SugarCRM中的某些数据。 我正在使用这个linkAPI调用糖crm

+0

你试过了什么? – sAcH

回答

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) 
     }); 

    }, 
+0

我想在Sugarcrm在线使用rest api获取数据,但我没有收到任何回应 – rajju