@@ -10,6 +10,7 @@ namespace IRaCIS.Core.Application.BusinessFilter.LegacyController
|
||||
using DocumentFormat.OpenXml.InkML;
|
||||
using IRaCIS.Core.Application.Service.Common;
|
||||
using IRaCIS.Core.Infrastructure;
|
||||
using IRaCIS.Core.Infrastructure.Extention;
|
||||
using Microsoft.AspNetCore.Components.Endpoints;
|
||||
using Microsoft.AspNetCore.Http;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
@@ -47,7 +48,8 @@ namespace IRaCIS.Core.Application.BusinessFilter.LegacyController
|
||||
/// <returns>返回的对象</returns>
|
||||
public async Task OnActionExecutionAsync(ActionExecutingContext context, ActionExecutionDelegate next)
|
||||
{
|
||||
this.Intoparam = JsonConvert.SerializeObject(context.ActionArguments);
|
||||
this.Intoparam = JsonConvert.SerializeObject(
|
||||
context.ActionArguments.TryGetValue("inQuery", out var v) ? v : null);
|
||||
try
|
||||
{
|
||||
this.RequestDuplication();
|
||||
|
||||
Reference in New Issue
Block a user