customerLogin是我想发送给我的服务的对象。 我不想使用查询字符串,也不想单独使用参数。 以下是代码:
var config = {
customerLogin : { // object I intend to send
'EmailID': $scope.existingCustomer.email,
'PhoneNumber': $scope.existingCustomer.phoneNumber,
'Passkey': $scope.existingCustomer.password
}
}
$http.get(existingCustomerUrlConstant, config).
在webapi中,我有以下代码:
[HttpGet]
// customerLogin object i want to receive here
public CustomerLogin GetCustomer(CustomerLogin customerLogin)
{
GetCustomerDAL getCustomerDAL = new GetCustomerDAL(customerLogin);
return customerLogin;
}
customerLogin在这里为空。 我如何通过Angular服务电话接收对象?
答案 0 :(得分:1)
使用POST方法是正确的调用。正如我在评论中所述。