1

我在控制器代码的 HttPost 方法中检索 Collection 类时遇到问题。例如,由于某种原因,它能够检索“int”,但不能检索字典。

我在 ASPX 文件中使用隐藏的输入标记。我确实在 ASPX 文件和控制器页面中的 HTTP 发布之前和之后放置了一个 Debug.WriteLine,但字典只填充在 ASPX 页面中。我需要它的代码页为 0。

...</tr>
                <% i++; %>
                <% list.Add(user.ID.ToString()); %>
                <% list.Add(user.FirstName.ToString()); %>
                <% list.Add(user.LastName.ToString()); %>
                <% list.Add(user.Seniority.ToString()); %>
                <% list.Add(sec_a.ToString()); %>
                <% list.Add(sec_b.ToString()); %>
                <% list.Add(sec_c.ToString()); %>
                <% list.Add(uvid_a.ToString()); %>
                <% details.Add(i, list); %>
             <% } %>
         </tbody>
         </table>
          // it works here but not in the .CS file where the post is made
        <% System.Diagnostics.Debug.WriteLine("Before Post value: " + details.Count); %>
          // here is the hidden field that is supposed to send the variable into the Action method
        <input type="hidden" name="student_details" value="<%= details %>" />
        <div class="buttons">
<button type="submit" class="button">Export Data</button>
        </div>
    </fieldset>
    </form>
</article>

    //Controller file    
    [HttpPost]
    public ActionResult Report(Dictionary<int, List<string>> student_details)
    {
        var grid = new System.Web.UI.WebControls.GridView();
        var datatable = new DataTable();

        datatable.Columns.Add("User ID");
        datatable.Columns.Add("First Name");
        datatable.Columns.Add("Last Name");
        datatable.Columns.Add("xxx");
        datatable.Columns.Add("yyy");
        datatable.Columns.Add("zzz");
        datatable.Columns.Add("Title");
        datatable.Columns.Add("Grade");

        System.Diagnostics.Debug.WriteLine("After Post value: " + student_details.Count);

        foreach (var stud in student_details)
        {
            datatable.Rows.Add(stud.Value);
        }

它传递一个 int 变量,但不传递一个 Dictionary。

4

0 回答 0