zoukankan      html  css  js  c++  java
  • .net core mvc 中 List超过100条会置为null

    start.up 添加FormOptions

    services.Configure<FormOptions>(options =>
    {
    options.ValueCountLimit = int.MaxValue; // 5000 items max
    //options.ValueLengthLimit = 1024 * 1024 * 100; // 100MB max len form data
    options.ValueLengthLimit = int.MaxValue; //
    });

  • 相关阅读:
    LeetCode
    LeetCode
    LeetCode
    LeetCode
    LeetCode
    LeetCode
    LeetCode
    LeetCode
    LeetCode
    LeetCode
  • 原文地址:https://www.cnblogs.com/v587yy/p/14837019.html
Copyright © 2011-2022 走看看