
原因:.net core提交的表单限制太小导致页面表单提交失败
[RequestFormLimits(ValueCountLimit = 5000)] public class TestController: Controller
public void ConfigureServices(IServiceCollection services) { services.Configure<FormOptions>(options => { options.ValueCountLimit = 5000; // 5000 items max options.ValueLengthLimit = 1024 * 1024 * 100; // 100MB max len form data });