阅读AngularJS服务中的帖子回复

时间:2015-05-05 21:28:22

标签: javascript angularjs post response angular-resource

我正在使用AngularJs中的帖子服务,该帖子返回一个布尔值,我可以在Google Developer Tools中看到它,但我找不到在代码中读取它的方法,有没有办法阅读它?

Service.js

company_2

Controlers.js

var impServices = angular.module('presupuestoServices', ['ngResource']);

impServices.factory('Cliente', ['$resource',
    function($resource){

    return  $resource( 'http://localhost:8080/IBascansService/AddCliente', {}, {
        addCliente: 
            {
            method:'POST', 
            headers: {'Content-Type': 'application/json'},
            body: {nombre_cliente: '@nombre_cliente'}
        }

    });
}]); 

Develpers工具的图片。

DeveloperTools

在此先感谢,我愿意接受任何解决方案!

0 个答案:

没有答案