Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/asp.net-core/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Asp.net core 为什么该站点被调用两次?_Asp.net Core_.net Core_Razor Pages - Fatal编程技术网

Asp.net core 为什么该站点被调用两次?

Asp.net core 为什么该站点被调用两次?,asp.net-core,.net-core,razor-pages,Asp.net Core,.net Core,Razor Pages,当我翻页时- @page "{categoryname}" 这会导致页面被调用两次。 categoryname第一次使用写在地址页上的条目时。 但在第二个回合中,他调用了categoryname=“checkout”(我不知道这是否与此相关,但在同一个页面上,有AJAX使用上述名称调用页面-“checkout”) 当我删除-@page“{categoryname}”时,它工作正常,只调用了1次 我试着把categoryname的名字改成另一个名字(我想可能还有另一个地方叫这

当我翻页时-

@page "{categoryname}"

这会导致页面被调用两次。 categoryname第一次使用写在地址页上的条目时。 但在第二个回合中,他调用了categoryname=“checkout”(我不知道这是否与此相关,但在同一个页面上,有AJAX使用上述名称调用页面-“checkout”)

当我删除-@page“{categoryname}”时,它工作正常,只调用了1次

我试着把categoryname的名字改成另一个名字(我想可能还有另一个地方叫这样的名字,但我发现它也改了名字,并且有同样的问题。)

我能做什么

致意

编辑

这是页面代码-

    <!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title> @ViewData["Title"] </title>
    <link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.min.css" />
    <link rel="stylesheet" href="~/css/site.css" />
    <script src="~/lib/jquery/dist/jquery.js"></script>
    <script src="~/js/owl.carousel.min.js"></script>
    <link href="~/css/owl.carousel.min.css" rel="stylesheet" />
    <script src="~/js/ckeditor5-build-classic/ckeditor.js"></script>
    <script src="~/js/jquery.unobtrusive-ajax.js"></script>
    <script src="https://kit.fontawesome.com/5212bc06e1.js" crossorigin="anonymous"></script>
    <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.1/css/all.css" integrity="sha384-vp86vTRFVJgpjF9jiIGPEEqYqlDwgyBgEF109VFjmqGmIY/Y4HV4d3Gp2irVfcrp" crossorigin="anonymous" />

    <meta name="viewport" content="width=device-width, initial-scale=1.0" />

</head>
<body>

    @using OrdersCore.Interfaces

    @inject Microsoft.AspNetCore.Http.IHttpContextAccessor HttpContextAccessor

    @inject HomeServices Customer

    @{



        var currentCust = new Models.Customer();

        foreach (var cookie in HttpContextAccessor.HttpContext.Request.Cookies)
        {
            if (cookie.Key == "OrderLoginDetails")
            {
                if (Customer.GetCustomer(cookie.Value) != null)
                {
                    Customer.Cookie = cookie.Value;
                }
            }

        }
        if (Customer.Cookie == null)
        {



        }
    }





    <header style="position: -webkit-sticky; position: sticky; top: 0;z-index:99">
        <div class="menuUp">

            <div class="container flexMenu whiteLinks">
                <div class="justMobile">
                    <a href="/index">
                        <i class="fas fa-home"></i>
                    </a>
                </div>
                <div class="justMobile">
                    <i class="fas fa-search"></i>
                </div>
                <div>
                    <div class="dropdown">
                        <i class="fas fa-shopping-cart"></i>
                        <div class="nonMobile">
                            <label class="dropbtn">
                                @if (@Customer.GetProductsInCart(Customer.Cookie) != null)
                                {
                                    int countProd = 0;
                                    @foreach (var item in Customer.GetProductsInCart(Customer.Cookie))
                                    {
                                        countProd += item.Quantity;
                                    }


                                    <span id="QuantityProds">
                                        @Html.Raw(countProd)
                                    </span>
                                }
                                else
                                {
                                    <span id="QuantityProds">0</span>
                                }
                                מוצרים בסל

                            </label>
                        </div>
                        <div class="dropdown-content">

                            <span id="txtHint"></span>

                            <div class="btnInsertToCart" style="margin-right:auto; margin-left:0;padding:5px; width: auto;">
                                <a asp-page="checkout">תשלום</a>
                            </div>
                        </div>
                    </div>
                </div>
                <div>


                    <div class="dropdown">
                        <i class="fas fa-user"></i>
                        <div class="nonMobile">

                            <label class="dropbtn">
                                החשבון שלי
                            </label>
                        </div>

                        <div class="dropdown-content">

                            <span id="spanConnecting"></span>

                        </div>
                    </div>
                </div>
                <div class="justMobile">
                    <i class="fas fa-phone-alt"></i>
                </div>

                <div class="nonMobile">

                    ראשי      |    אודותינו     |    צרו קשר
                </div>
            </div>
        </div>
        <div class="menuMiddle">
            <div class="container flexMenu">
                <div>
                    <a asp-page="./index">
                        <img src="~/Images/logo.png" />
                    </a>
                </div>
                <div class="nonMobile">
                    <form class="search" method="get" asp-page="/search">
                        <button type="submit"><i class="fa fa-search"></i></button>
                        <input type="text" placeholder="חיפוש.." class="quantity" name="SearchString">
                    </form>

                </div>
            </div>
        </div>
        <nav class="navbar navbar-expand-sm navbar-toggleable-sm navbar-dark menuBottom border-bottom box-shadow mb-3">
            <div class="container">
                <button class="navbar-toggler" type="button" data-toggle="collapse" data-target=".navbar-collapse" aria-controls="navbarSupportedContent"
                        aria-expanded="false" aria-label="Toggle navigation">
                    <span class="navbar-toggler-icon"></span>
                </button>
                <div class="navbar-collapse collapse d-sm-inline-flex justify-content-lg-start">
                    <ul class="navbar-nav">
                        @foreach (var item in Customer.GetNav(0))
                        {
                            <li class="nav-item dropdown">
                                <a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
                                    @item.TagsName
                                </a>
                                <div class="dropdown-menu dropdown-menu-right" aria-labelledby="navbarDropdown">

                                    @foreach (var item2 in Customer.GetNav(item.Id))
                                    {

                                        <a asp-page="Category" asp-route-categoryName="@item2.TagsName" class="dropdown-item">@item2.TagsName</a>


                                    }
                                </div>
                            </li>

                        }

                    </ul>
                </div>
            </div>
        </nav>

    </header>






    <div class="container">
        <main role="main" class="pb-3">
            @RenderBody()
        </main>
    </div>

    <footer class="border-top footer text-muted">
        <div class="container">
            &copy; 2021 - OrdersCore - <a asp-area="" asp-page="/Privacy">Privacy</a>
        </div>
    </footer>
    <script>
        $(document).ready(function () {

            $('.productPrice').each(function () {
                var new_text = parseFloat($(this).text()).toFixed(2);
                $(this).text(new_text + " ₪");
            })

            $('.productDetails').each(function () {
                var new_text2 = $(this).text().replace(/(<([^>]+)>)/gi, "");
                new_text2 = new_text2.replace(/&nbsp;/g, '');
                $(this).text(new_text2);
            })



        });
    </script>

    <script>
        ClassicEditor
            .create(document.querySelector('#editor'))
            .catch(error => {
                console.error(error);
            });
    </script>

    <script>
        $(document).ready(function () {
            $("#connecting").load("Connecting");
        });

    </script>

    <script>
        $(document).ready(function () {
            $('.cartPrice').each(function () {
                var new_text = parseFloat($(this).text()).toFixed(2);
                $(this).text(new_text + " ₪");
            })
        });



    </script>
    <script>
        $('#txtHint').load('Checkout #cartProducts', function (data) {
            var $script = $(data).find('span[id=script]');
            if ($script.length) {
                $.getScript($script.html());
                // remove the span tag -- no need to render it
                $script.remove();
            }
            $('Checkout #cartProducts').html(data);
        })
        $('#spanConnecting').load('connecting', function (data) {
            var $script = $(data).find('span[id=script]');
            if ($script.length) {
                $.getScript($script.html());
                // remove the span tag -- no need to render it
                $script.remove();
            }
            $('connecting').html(data);
        });



        function changeCart() {
            $('#txtHint').load('Checkout #cartProducts', function (data) {
                var $script = $(data).find('span[id=script]');
                if ($script.length) {
                    $.getScript($script.html());
                    // remove the span tag -- no need to render it
                    $script.remove();
                }
                $('Checkout #cartProducts').html(data);


                $('#QuantityProds').each(function () {
                    var new_text = parseFloat($(this).text()) + 1;
                    $(this).text(new_text);
                })
            });
        };
    </script>
    <script>

        function deleteCart(form, quant, price) {

            sum = $(form).parents('tr').find('*').text();
            $(form).parents('tr').remove();

            $('#QuantityProds').each(function () {
                var new_text = parseFloat($(this).text()) - parseFloat(quant);
                $(this).text(new_text);
            })

            var newPrice = parseFloat($("#cartPrice").text().replace("₪", ""));
            newPrice = newPrice - price;
            console.log(newPrice)
            $("#cartPrice").text(newPrice);


        };


    </script>
    <script src="~/lib/jquery/dist/jquery.min.js"></script>
    <script src="~/lib/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
    <script src="~/js/site.js" asp-append-version="true"></script>

    @await RenderSectionAsync("Scripts", required: false)
</body>
</html>

@ViewData[“标题”]
@使用OrdersCore.Interfaces
@注入Microsoft.AspNetCore.Http.IHttpContextAccessor HttpContextAccessor
@向客户提供家庭服务
@{
var currentCust=新模型。Customer();
foreach(HttpContextAccessor.HttpContext.Request.Cookies中的var cookie)
{
如果(cookie.Key==“OrderLoginDetails”)
{
if(Customer.GetCustomer(cookie.Value)!=null)
{
Customer.Cookie=Cookie.Value;
}
}
}
if(Customer.Cookie==null)
{
}
}
@if(@Customer.GetProductsInCart(Customer.Cookie)!=null)
{
int countProd=0;
@foreach(Customer.GetProductsInCart(Customer.Cookie)中的var项)
{
countProd+=物料数量;
}
@Html.Raw(countProd)
}
其他的
{
0
}
מוצרים בסל
@foreach(Customer.GetNav(item.Id)中的var item2)
{
@项目2.TagsName
}

}

@RenderBody()
&抄袭;2021年-OrdersCore-隐私
$(文档).ready(函数(){
$('.productPrice')。每个(函数(){
var new_text=parseFloat($(this).text()).toFixed(2);
$(此).text(新文本+“₪”);
})
$('.productDetails')。每个(函数(){
var new_text2=$(this.text().replace(/(]+)>)/gi,“”;
new_text2=new_text2.replace(//g',);
$(此).text(新文本2);
})
});
分类编辑器
.create(document.querySelector('#editor'))
.catch(错误=>{
控制台错误(error);
});
$(文档).ready(函数(){
$(“连接”)。加载(“连接”);
});
$(文档).ready(函数(){
$('.cartPrice')。每个(函数(){
var new_text=parseFloat($(this).text()).toFixed(2);
$(此).text(新文本+“₪”);
})
});
$('#txtHint')。加载('Checkout#cartProducts',函数(数据){
var$script=$(data.find('span[id=script]');
if($script.length){
$.getScript($script.html());
//删除span标记--无需渲染它
$script.remove();
}
$('Checkout#cartProducts').html(数据);
})
$('#spanConnecting')。加载('connecting',函数(数据){
var$script=$(data.find('span[id=script]');
if($script.length){
$.getScript($script.html());
//删除span标记--无需渲染它
$script.remove();
}
$('connecting').html(数据);
});
函数changeCart(){
$('#txtHint')。加载('Checkout#cartProducts',函数(数据){
var$script=$(data.find('span[id=script]');
if($script.length){
$.getScript($script.html());
//删除span标记--无需渲染它
$script.remove();
}
$('Checkout#cartProducts').html(数据);
$('#QuantityProds')。每个(函数(){
var new_text=parseFloat($(this).text())+1;
$(此).text(新文本);
})
});
};
功能删除购物车(形式、数量、价格){
sum=$(form).parents('tr').find('*').text();
$(form).parents('tr').remove();
$('#QuantityProds')。每个(函数(){
var new_text=parseFloat($(this.text())-parseFloat(quant);
$(此).text(新文本);
})
var newPrice=parseFl