显示时将对象传递给模态

Posted

技术标签:

【中文标题】显示时将对象传递给模态【英文标题】:Pass object to modal when it shows up 【发布时间】:2020-03-10 16:34:54 【问题描述】:

我有一个简单的表格,可以编辑特定行的项目。当用户点击图标(类icon ion-md-create)时,模态出现,然后用户可以编辑数据。 Modal 包含表单,因此当用户提交表单时,控制器正在使用新数据更新数据库。

这是我显示行的方式:

@foreach (var measurement in Model.WeightMeasurements)

    <tr>
        <td>@html.DisplayFor(x => measurement.MeasurementDate)</td>
        <td>@Html.DisplayFor(x => measurement.Value)</td>
        <td>
            <a class="btn-icon" href="#" data-toggle="modal" data-target="#editWeight" data-id="@measurement.Id" data-weight="@measurement.Value" data-date="@measurement.MeasurementDate"> 
                <i class="icon ion-md-create"></i> 
            </a>
        </td>
    </tr>

这就是我获取每一行数据并将它们插入模态的方式:

$(document).ready(function () 
    $('#editWeight').on('show.bs.modal', function (e) 
        // get data
        var id = $(e.relatedTarget).data('id');
        var weight = $(e.relatedTarget).data('weight');
        var date = $(e.relatedTarget).data('date');

        // insert data in modal
        $('#e_weight_id').val(id);
        $('#e_weight_value').val(weight);
        $('#e_datepickerWeight').val(date);
    );
);

这是我的模态的样子:

<div class="modal animated bounceIn" id="editWeight" tabindex="-1" role="dialog" aria-hidden="true">
    <div class="modal-dialog modal-lg modal-dialog-centered" role="document">
        <div class="modal-content">
            <div class="modal-header">
                <button type="button" class="close" data-dismiss="modal" aria-label="Close">
                    <span aria-hidden="true">&times;</span>
                </button>
            </div>
            <div>
                <div class="modal-body">
                    @using (Html.BeginForm("EditWeightMeasurement", "Measurement", FormMethod.Post, new  @class = "pt-5" ))
                    
                        @Html.Hidden("e_weight_id", "");
                        <div class="row">
                            <div class="col-6 form-group">
                                <label for="uname">Weight [kg] </label>
                                @Html.TextBox("e_weight_value", "", new  @placeholder = "Edit weight", @class = "form-control", @required = "required" )
                            </div>
                            <div class="col-6">
                                <div class="form-group">
                                    <label>Date</label>
                                    @Html.TextBox("e_weight_date", "", new  @id = "e_datepickerWeight", @class = "form -control datepicker" )
                                </div>
                            </div>
                        </div>
                        <div class="d-flex py-3 align-items-center">
                            <div class="ml-auto">
                                <button type="submit" class="btn pink">Save</button>
                            </div>
                        </div>
                    
                </div>
            </div>
        </div>
    </div>
</div>

我不喜欢 js 在那里的工作方式 - 我不想从 html 获取数据,而是将整个 measurement 对象传递给 modal(与从 form 传递对象的方式相同)到controller 层)。这可以吗?

【问题讨论】:

如果可能,请分享您的代码,以便我帮助从头开始改进 DM 代码 @HardikMasalawala 我已经添加了代码 尽可能分享我个人资料中的邮件 【参考方案1】:

您只需在 modal bootstrap 4 中使用 event.relatedTarget 和 HTML data-* 属性

$('#exampleModal').on('show.bs.modal', function (event) 
  var button = $(event.relatedTarget) // Button that triggered the modal
  var recipient = button.data('whatever') // Extract info from data-* attributes
  // If necessary, you could initiate an AJAX request here (and then do the updating in a callback).
  // Update the modal's content. We'll use jQuery here, but you could use a data binding library or other methods instead.
  var modal = $(this)
  modal.find('.modal-title').text('New message to ' + recipient)
  modal.find('.modal-body input').val(recipient)
)
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">

    <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
    <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
    
    <button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModal" data-whatever="@mdo">Open modal for @mdo</button>
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModal" data-whatever="@fat">Open modal for @fat</button>
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModal" data-whatever="@getbootstrap">Open modal for @getbootstrap</button>

<div class="modal fade" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
  <div class="modal-dialog" role="document">
    <div class="modal-content">
      <div class="modal-header">
        <h5 class="modal-title" id="exampleModalLabel">New message</h5>
        <button type="button" class="close" data-dismiss="modal" aria-label="Close">
          <span aria-hidden="true">&times;</span>
        </button>
      </div>
      <div class="modal-body">
        <form>
          <div class="form-group">
            <label for="recipient-name" class="col-form-label">Recipient:</label>
            <input type="text" class="form-control" id="recipient-name">
          </div>
          <div class="form-group">
            <label for="message-text" class="col-form-label">Message:</label>
            <textarea class="form-control" id="message-text"></textarea>
          </div>
        </form>
      </div>
      <div class="modal-footer">
        <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
        <button type="button" class="btn btn-primary">Send message</button>
      </div>
    </div>
  </div>
</div>

您也可以访问bootstrap docs 了解更多信息

【讨论】:

嗨@miladnematzadeh,通常在参考文档时,我们喜欢在答案中引用它。这样,如果 URL 发生变化,将来搜索的人仍然可以使用答案。您能否编辑您的答案以指出您具体指的是文档的哪些部分?

以上是关于显示时将对象传递给模态的主要内容,如果未能解决你的问题,请参考以下文章

为啥 MVC 在将对象传递给视图时倾向于将对象转换为数组?

创建/更新实体时,我应该将对象传递给业务逻辑还是对象值?

React:将对象传递给状态

角度 2 - 在 div 单击时,将对象传递给另一个组件,另一个组件使用该对象调用休息服务

如何将对象传递给另一个数组对象

检测何时将对象传递给 C++ 中的新线程?