我正在使用Restangular的get函数。作为回报,我得到一个具有客户和一些其他函数的对象,但这些restangular函数与客户列表无关。
为什么呢?还有其他办法吗?
答案 0 :(得分:0)
使用.plain()。
Restangular.one('accounts', 1234)
.then(function (account) {
account.plain(); // object whitout the restangular methods
});