如何使用angularjs在头文件中获取表单数据参数?

时间:2016-08-06 12:30:20

标签: angularjs

我使用$ http post成功后我获得了网络中的标题,它包含常规,请求标题,响应标题,表单数据。

如果我使用headers()我得到了响应标题但我如何获得表单数据对象。

[DllImport("kernel32.dll", SetLastError = true)]        
protected static extern bool CloseHandle([In] IntPtr Handle);
.
.
.
IntPtr hWnd = GetForegroundWindow();
.
.
.
CloseHandle(hWnd);

接头:

 $http({
        method: "POST",
        url: "http://localhost/demoPaymentGatway/index.html",
        headers: {
                        'Content-Type': 'application/x-www-form-urlencoded',
                        'X-Requested-With': 'XMLHttpRequest'
                    }
                }).success(function(data, status, headers, config) {
                    console.log(headers());
                    console.log();
                    }).error(function(r4) {
                        console.log(headers);

                });

请帮助我如何使用$ http,$ resource

获取此表单数据

1 个答案:

答案 0 :(得分:0)

如果您需要访问成功回调中POST请求中发送的表单数据,则需要查看config.data属性。

$http({
        method: "POST",
        url: "http://localhost/demoPaymentGatway/index.html",
        headers: {
                        'Content-Type': 'application/x-www-form-urlencoded',
                        'X-Requested-With': 'XMLHttpRequest'
                    }
                }).success(function(data, status, headers, config) {
                    //This is the post data that was originally sent
                    console.log(config.data);
                    }).error(function(r4) {
                        console.log(headers);

                });

供参考,请参阅this link