Amplifyjs和状态代码



我正在尝试使用" amplifyjs"来处理ajax请求,就像约翰·帕帕(John Papa)在他的Pluralsight课程中一样,但我在身份验证方面有问题。

我正在使用表单身份验证。一切都很好。

我的问题伴随着未经验证的请求。我找不到使" AmplifyJs"回馈错误函数HTTP代码(401,403 ...)的方法来区分失败的请求,因为它们没有从失败的请求中进行身份验证,因为未符合业务逻辑。

请求示例是:

amplify.request.define("products", "ajax", {
                url: "/api/Products",
                datatype: "json",
                type: "GET"
            });
amplify.request({
                    resourceId: "products",
                    success: callbacks.success,
                    error: function (datos, status) {
                              //somecode
                           }
                });

谢谢。

如果您想要XHR对象并将其传递,则可以创建解码器。它将具有您可能需要的错误代码和其他信息。

amplify.request.define("products", "ajax", {
    url: "http://httpstat.us/401",
    datatype: "json",
    type: "GET",
    decoder: function ( data, status, xhr, success, error ) {
        if ( status === "success" ) {
            success( data, xhr );
        } else if ( status === "fail" || status === "error" ) {
            error( status, xhr );
        } else {
            error( status, xhr );
        }
    }
});
amplify.request({
    resourceId: "products",
    success: function(data, status) {
        console.log(data, status);        
    },
    error: function(status, xhr) {
        console.log(status, xhr);
    }
});​

您可以通过查看此http://jsfiddle.net/fwkhm/

来测试上述代码

感谢您的回答。

最后,当我看到没有人回答我时,我做了类似于您建议的事情:

var decoder = function (data, status, xhr, success, error) {
    if (status === "success") {
        success(data, status);
    } else if (status === "fail" || status === "error") {
        try {
            if (xhr.status === 401) {
                status = "NotAuthorized";
            }
            error(JSON.parse(xhr.responseText), status);
        } catch (er) {
            error(xhr.responseText, status);
        }
    }
};

修改默认解码器后:

amplify.request.decoders._default = decoders.HeladeriaDecoder;

,在错误回调中,我管理了返回的状态。

error: function (response, status) {
    if (status === "NotAuthorized") {
        logger.error(config.toasts.errorNotAuthenticated);
    } else {
        logger.error(config.toasts.errorSavingData);
    }
//more code...
}

相关内容

  • 没有找到相关文章

最新更新