6

下面我尝试在 CustomerModel Razor 页面中对操作方法/处理程序发出发布请求。

RazorPage 名称为“Customer.cshtml”

从 Ajax 请求绑定 DropdownList

<div class="col-xs-12 col-sm-6 col-md-6 col-lg-4">
<select class="form-control" id="CustomerID" 
        name="CustomerID" 
        asp-for="Customer.CustomerID"
        asp-items="@(new SelectList(string.Empty,"CustomerID", "Name"))">
</select>

阿贾克斯请求

我也尝试只调用处理程序,但它显示错误

<script type="text/javascript">
$(document).ready(function ()
{
    $.ajax({
            type: 'GET',
            // we are calling json method

            // /Pagename/ActionMethod
            // /Pagename/Handler(OnGetListofCustomer)

            url: '/Customer/OnGetListofCustomer', 
            contentType: "application/json",
            success: function (data) {
                $("#CustomerID").append('<option value="' + "0" + '">' + "Select State" + '</option>');
                debugger;
                $.each(data, function (i, state) {
                    $("#CustomerID").append('<option value="' + state.CustomerID + '">' + state.Name + '</option>');
                });
            },
            error: function (ex) {
                alert('Failed to retrieve states.' + ex);
            }
        });
});

页面模型

客户模型

发出 Ajax 请求时出错

在此处输入图像描述

4

2 回答 2

8

我认为您无法访问这样的剃须刀页面操作方法。你可以这样试试吗?

$.getJSON("/Customer?handler=ListofCustomer",function(data){
    //Do something with the data.
});

因为要访问除默认 OnGet 或 OnPost 方法之外的任何方法,我们需要处理程序,它在运行时内部映射到方法。

于 2017-10-06T05:37:12.653 回答
1

要调用处理程序,您需要添加处理程序关键字。

网址:- /Customer?handler=ListofCustomer

URL :- /Razor 页面名称?HandlerName

用于调用 Get Request 的 jquery 代码片段

于 2017-10-06T06:58:40.910 回答