gpt4 book ai didi

c# - 服务器在 AngularJS 中响应状态为 500(内部服务器错误)

转载 作者:行者123 更新时间:2023-11-29 15:24:09 26 4
gpt4 key购买 nike

JS:

$scope.GetLocationList = function () {
var url = "/MasterSvc.asmx/GetAllLocationList";
var data = {};
var options = {};
$http.post(url, data, options).then(function (response) {
var dbfsr = response.data.d;
var LocData = {};
$scope.LocData = dbfsr;
}).catch(
function (response) {
console.log('return code: ' + response.status);
});
};

这是在页面加载时调用 initController() 的 JS 函数。

HTML:

<table class="table table-bordered table-hover"
style="width: 95%;font-size:12px" id="EmpTbl">
<tr>
<th>Location Code</th>
<th>Location Type</th>
<th>Location Name</th>
<th>Location Address</th>
<th>Contact Person</th>
<th>Contact No</th>
<th>Actions</th>
</tr>
<tr dir-paginate="loc in LocData|orderBy:sortKey:reverse|filter:search|itemsPerPage:10">
<td>{{loc.LocationCode}}</td>
<td>{{loc.LocationType}}</td>
<td>{{loc.LocationName}}</td>
<td>{{loc.LocationAddress}}</td>
<td>{{loc.ContactPerson}}</td>
<td>{{loc.ContactNo}}</td>
<td style="text-align: center">
<input type="button" class="btn btn-warning SelectLocation"
data-ng-click="GetLocationDetails(loc.LocationCode)"
value="View/Edit" id="SelectLocation" data-toggle="modal"
data-target="#myModal" />
</td>
</tr>
</table>

这是 HTML 代码,其中分页的使用类似于 ng-repeat,也用于分页。

WebService Screen Console Error

我正在尝试使用 Mysql 数据库中的 webService 绑定(bind)表。当数据库选择记录限制为 240 条时,它工作正常,但如果记录超过 240 条,它会显示内部服务器错误 500。如何解决这个问题。请找到屏幕和代码。谢谢。

最佳答案

您需要增加配置中的最大大小

在 web.config 后端添加此代码

<httpRuntime maxRequestLength="52428800" executionTimeout="36000" />

关于c# - 服务器在 AngularJS 中响应状态为 500(内部服务器错误),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59168768/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com