标签: angularjs ngresource
我有一个向后端的请求,该请求返回一个数字。只是一个数字 因此查询的结果可能像这样12.34
12.34
但是当我使用$resource.get时,我的$promise只得到了.$promise.then(data => console.log(data)的无限递归循环;
$resource.get
$promise
.$promise.then(data => console.log(data)
但是如果后端返回一个对象,一切正常。
有人知道发生了什么吗? 谢谢