重要聲明-針對攻擊者 網站pljzy.top被某人攻擊 ZY知識庫 首先 說我網站抄襲,文章抄襲,ok,你列舉一下我有那幾篇文章是抄的別人的?自己眼睛不看的是吧,但凡我參考的別人的文章我都會放原文地址。 先放幾張圖片,真搞不懂我抄誰了,下麵全是我自己電腦的md文件,我抄誰的了?全是我自己做的筆記。 ...
abp(net core)+easyui+efcore實現倉儲管理系統目錄 abp(net core)+easyui+efcore實現倉儲管理系統——ABP總體介紹(一) abp(net core)+easyui+efcore實現倉儲管理系統——解決方案介紹(二) abp(net core)+easyui+efcore實現倉儲管理系統——領域層創建實體(三) abp(net core)+easyui+efcore實現倉儲管理系統——定義倉儲並實現 (四) abp(net core)+easyui+efcore實現倉儲管理系統——創建應用服務(五) abp(net core)+easyui+efcore實現倉儲管理系統——使用 WEBAPI實現CURD (十一) abp(net core)+easyui+efcore實現倉儲管理系統——EasyUI之貨物管理一 (十九) abp(net core)+easyui+efcore實現倉儲管理系統——ABP WebAPI與EasyUI結合增刪改查之一(二十七) abp(net core)+easyui+efcore實現倉儲管理系統——入庫管理之一(三十七) abp(net core)+easyui+efcore實現倉儲管理系統——出庫管理之一(四十九) abp(net core)+easyui+efcore實現倉儲管理系統——ABP升級7.3上(五十八) 承接上文(abp(net core)+easyui+efcore實現倉儲管理系統——供應商管理升級之上(六十三))我們對供應商管理這個模塊進行升級,並對升級過程中涉及到一些問題進行解決。
9.在Visual Studio 2022中按F5運行應用程式。在瀏覽器將呈現登錄頁面,然後輸入管理員用戶名進行登錄。瀏覽器跳轉到首頁面。
10.在主界面的菜單中,選擇“Business->供應商管理”菜單項,瀏覽器中呈現一個供應商信息列表頁面,css起作用了,樣式好看了。如下圖。
11然後點擊供應商列表頁面中的新增(Add)按鈕,填寫內容,然後點擊“保存”按鈕。如下圖。
12. 在“Create New Supplier”頁面中我們輸入完信息之後,點擊“Save”按鈕。應用程式報了一個錯誤。如下圖。
13.Supplier的增刪改查,我們是調用的WebApi來實現保存到資料庫與查詢數據的操作,那麼問題就可能出在WebAPI這一個項目中。在Visual Studio 2022的解決方案資源管理器中,選中“ABP.TPLMS.Web.Host”項目,然後單擊滑鼠右鍵,在彈出菜單中選中“設為啟動項目”。按F5運行應用程式,程式報錯。
14. 在Visual Studio 2022的解決方案資源管理器中,“ABP.TPLMS.Web.Host”項目的App_Data\Log目錄下找到log.txt文件,這是一個日誌文件。在文件中我找到如下,錯誤信息。
AspNetCore.Server.IIS.Core.IISHttpServer - Connection ID "18230571335350747201",15. 在Visual Studio 2022的解決方案資源管理器中,“ABP.TPLMS.Applicationt”項目的Suppliers目錄下找到SupplierAppService.cs文件。在文件中有兩個Create方法,代碼如下:
Request ID "40000042-000a-fd00-b63f-84710c7967bb": An unhandled exception was thrown by the application. Microsoft.AspNetCore.Routing.Matching.AmbiguousMatchException: The request matched multiple endpoints. Matches: ABP.TPLMS.Suppliers.SupplierAppService.CreateAsync (ABP.TPLMS.Application) ABP.TPLMS.Suppliers.SupplierAppService.Create (ABP.TPLMS.Application) at Microsoft.AspNetCore.Routing.Matching.DefaultEndpointSelector.ReportAmbiguity(CandidateState[] candidateState) at Microsoft.AspNetCore.Routing.Matching.DefaultEndpointSelector.ProcessFinalCandidates
(HttpContext httpContext, CandidateState[] candidateState) at Microsoft.AspNetCore.Routing.Matching.DefaultEndpointSelector.Select(HttpContext httpContext,
CandidateState[] candidateState) at Microsoft.AspNetCore.Routing.Matching.DfaMatcher.MatchAsync(HttpContext httpContext) at Microsoft.AspNetCore.Routing.EndpointRoutingMiddleware.Invoke(HttpContext httpContext) at Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware.Invoke(HttpContext context)
using Abp.Application.Services;
using Abp.Domain.Repositories;
using ABP.TPLMS.Entitys;
using ABP.TPLMS.Suppliers.Dto;
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
namespace ABP.TPLMS.Suppliers
{
public class SupplierAppService :AsyncCrudAppService<Supplier, SupplierDto, int,
PagedSupplierResultRequestDto, CreateUpdateSupplierDto, CreateUpdateSupplierDto>,
ISupplierAppService
{
public SupplierAppService(IRepository<Supplier, int> repository)
: base(repository)
{
}
public Task<SupplierDto> Create(CreateUpdateSupplierDto input)
{
return CreateAsync(input);
}
public override Task<SupplierDto> CreateAsync(CreateUpdateSupplierDto input)
{
var sin = input;
return base.CreateAsync(input);
}
}
}
16. 在Visual Studio 2022的解決方案資源管理器中,使用滑鼠雙擊打開 SupplierAppService.cs文件。將Create方法註釋。按F5運行應用程式。登錄之後,點擊“Supplier”目錄,我們可以看到供應商列表頁面。然後點擊供應商列表頁面中的Add按鈕。
17. 在“Create New Supplier”頁面中我們輸入完信息之後,點擊“Save”按鈕。數據保存到資料庫,應用會刷新供應商列表頁面。如下圖。