簡體   English   中英

$ Ajax ASP.NET Web方法調用中的錯誤[異步]

[英]Error in $Ajax ASP.NET web method call [async]

我正在研究異步Web方法(asmx文件),並且需要在整個ajax jquery方法中調用此方法,但是由於該方法還使用Entity Framework來運行其他內容,因此遇到了很多問題。

這是JavaScript:

function SubmitStripeForm() {
        // event.preventDefault();
        stripe.createToken(card).then(function (result) {
            if (result.error) {
                // Inform the user if there was an error.
                var errorElement = document.getElementById('card-errors');
                errorElement.textContent = result.error.message;
            } else {
                // Send the token to your server.
                // stripeTokenHandler(result.token);
                console.log();
                var myToken = result.token.id;
                $.ajax({
                    type: "POST",
                    url: "http://localhost:54355/Account/API/Stripe.asmx/MyStripePayment",
                    crossDomain: true,
                    async: false,
                    data: '{Tok: "' + myToken + '" }',
                    contentType: "application/json; charset=utf-8",
                    dataType: "json",
                    success: function (response) {
                        if (response.d) {
                            console.log("Good");
                        }
                        else {
                            console.log("Bad");
                        }
                    },
                    failure: function (response) {
                        console.log("HORRIBLE");
                    }
                });
            }
        });

這是asp.net c#中的Web方法:

[WebMethod(EnableSession = true)]
    public async void MyStripePayment(string Tok)
    {   
        string MyToken = Tok;
        using (var context = new CompanyEntities())
        {
            var collection = (from p in context.COMPANY where p.Id == Company_Id select p);
            foreach (var item in collection)
            {
                // Validation of the object
                BillingManagement.Michael Maik = new BillingManagement.Michael();
                Maik.name = "Michael";
                Maik.id = "114060502";
                Maik.number = "83290910";


                #region Send Information To Stripe
                CancellationToken Token = new CancellationToken();
                string Url = "http://localhost:5000/testing/give-your-data";
                using (var client = new HttpClient())
                using (var request = new HttpRequestMessage(HttpMethod.Post, Url))
                {
                    var json = JsonConvert.SerializeObject(Maik);
                    using (var stringContent = new StringContent(json, Encoding.UTF8, "application/json"))
                    {
                        request.Content = stringContent;

                        using (var response = await client
                            .SendAsync(request, HttpCompletionOption.ResponseHeadersRead, Token)
                            .ConfigureAwait(false))
                        {
                            response.EnsureSuccessStatusCode();
                            string resString = await response.Content.ReadAsStringAsync();
                            JObject jObject = JObject.Parse(resString);
                            string message = (string)jObject["message"];
                        }
                    }
                }
                #endregion

            }
        }

這是顯示的錯誤:

POST http://localhost:54355/Account/API/Stripe.asmx/MyStripePayment 500 (Internal Server Error)

您是否嘗試過使用“ Try/Catch來獲取有關該錯誤的更多信息? 顯然這是內部問題,最好像這樣使用它,然后再試一次以查看它是什么錯誤。

try
{
    // Code
}
catch (Exception ex)
{
   console.writeLine(ex);         
}

要么

您對捕獲進行了干預,以便能夠在局部變量中查看``Ex''的值或將錯誤保存在某個地方以供日后閱讀。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM