1

我有一个使用 Web API 后端的 angularJS 站点。我正在尝试进行保存,我希望得到一个结果类型枚举,它在下面定义

public enum ResultType
{
    Success,
    InvalidAccountNumber,
    InvalidAddress,
    NotFound,
    Incomplete,
    Error,
    Unauthorized
}

这是我用来设置资源的代码。

app.factory('NotificationOptInApi', function ($resource) {
return $resource(API_SOURCE + 'NotificationOptIn', {}, {
    'save': { method: 'POST', isArray: true }
});

});

这是我的拯救电话

$scope.saveNotifications = function () {
    var result = NotificationOptInApi.save($scope.notifications, function () {
        // check for failure
        if (result !== 'Success') {
            $scope.saveError = result;
            return;
        }
    });
};

这是我得到的回报

{0: "S", 1: "u", 2: "c", 3: "c", 4: "e", 5: "s", 6: "s", $get: function, $save: function, $query: function, $remove: function, $delete: function}

这是返回它的代码。这是当我试图返回一个列表而不是一个 reusltType

public List<ResultType> Post([FromBody]dynamic notificationSubscriptionHolder)
    {
        List<NotificationSubscriptionData> notificationSubscriptions = notificationSubscriptionHolder.ToObject<List<NotificationSubscriptionData>>();

        Logger.Info("Update Account Notifications", string.Format("<updateAccountNotificationsToUser><NotificationSubscriptionData>{0}</NotificationSubscriptionData><user>{1}</user></updateAccountNotificationsToUser>", notificationSubscriptions, this.CurrentIdentity.Name));
        try
        {
            return _accountManager.UpdateAccountNotifications(this.CurrentIdentity.Name, notificationSubscriptions);
        }
        catch(Exception ex)
        {
            return new List<ResultType>() { ResultType.Error };
        }
    }

这在其他地方也有效,没有问题。我可以检查结果,它将是“成功”。我在这里看到的区别是我正在保存一个数组,所以我必须将 IsArray 设置为 true。我目前在保存的数组中有 1 项。我得到的响应是一个字符数组。放在一起拼出“成功”。

即使我正在保存一个数组,有没有办法让我不将我的响应作为一个数组返回?我还尝试返回一个列表,认为我需要返回一个数组。当我这样做时,我得到一个包含 1 项的数组,但在该 1 项中,我有一个字符数组,说明成功。

4

1 回答 1

0

阅读源代码我得出了一些结论:

当数组为真时,ngResource 模块迭代响应中收到的每个项目,并创建一个 Resource 的新实例。为此,他们在响应和资源对象之间使用 angular.copy。由于 angular.copy 仅适用于数组和对象类型,但您发送的 ["success"] 是一个字符串,因此它无法正常显示数组的字符。在您的编辑器中尝试以下代码,您将得到答案。要解决此问题,您应该返回一个类似 [{Message:"Success"}] 的对象

var obj = angular.copy('成功', {}); 警报(obj);

于 2013-07-18T19:37:40.167 回答