在.Net core中使用动态对象数组构建表单

时间:2018-09-02 08:33:19

标签: .net vue.js asp.net-core .net-core

我目前正在使用.Net core 2构建表单,该表单中包含对象列表。这是表单本身的示例。

public class InsuranceForm
{
    public IList<WindowModel> Windows { get; set; }
}
public class WindowModel
{
    public string WindowImage { get; set; }
    public string WindowDamageDescription { get; set; }
}

在View中,我需要能够通过单击按钮添加两个输入字段(窗口图像和窗口损坏说明),然后通过Submit按钮发送带有此属性数组的表单。 我尝试用VueJs添加新的输入字段,但未成功发送数组中的数据。

                <div id="newWindowButtons">
                <button type="button" v-on:click="addNewWindow" class="btn btn-success">
                    Add new window
                </button>
            </div>
 <div v-for="(window, index) in windows">
                    <div class="form-group mt-3">
                        <input v-model="windows.WindowImage" type="file" class="form-control-file">
                    </div>
                    <div class="form-group">
                        <input class="form-control" v-model="window.WindowDamageDescription"
                               type="text" />
                    </div>
            </div>

如何在提交时正确传递此输入的值? 谢谢。

使用完整代码更新。

接受表格的控制器,现在看起来像这样。

[HttpPost]
    public async Task<IActionResult> Insurance([FromForm]InsuranceForm insuranceForm)
    {
        var client = new HttpClient();

        if (ModelState.IsValid)
        {


            var response = await client.PostAsJsonAsync("url", insuranceForm);
            return RedirectToAction("Index");
        }
        else
        {
            var modelStateErrors = ModelState.Keys.SelectMany(key => ModelState[key].Errors);
        }
        return View(insuranceForm);
    }

VueJs代码:

var app = new Vue({
        el: "#app",
        data: {
            window: {
                WindowImage: "",
                WindowDamageDescription: ""
            },
            windows: [],
        },
        methods: {
            addNewWindow: function () {
                this.windows.push(Vue.util.extend({}, this.window));
            }
     },

    });

查看

 <form method="post" id="insuranceForm">
<div id="newWindowButtons">
                <button type="button" v-on:click="addNewWindow" class="btn btn-success">
                    Add new window
                </button>
            </div>
            <div v-for="(window, index) in windows">
                    <div class="form-group mt-3">
                        <input v-model="windows.WindowImage" type="file" class="form-control-file">
                    </div>
                    <div class="form-group">
                        <input class="form-control" v-model="window.WindowDamageDescription"
                               type="text" />
                    </div>
            </div>
            <div class="d-flex justify-content-start">
            <button type="submit" class="btn btn-primary btn-lg" id="submitForm">Send</button>
        </div>
    </form>

1 个答案:

答案 0 :(得分:1)

如果您正在使用Vue处理表单的方法,则可以执行以下操作。

您的表格。

<form v-on:submit.prevent="postData()">

<div v-for="(window, index) in windows">
  <div class="form-group mt-3">
    <input v-on:change="onFileChange($event, index)" type="file" class="form-control-file">
  </div>
  <div class="form-group">
    <input class="form-control" v-model="window.windowDamageDescription" type="text" />
  </div>
</div>

<button v-on:click="addNewWindow">Add new window</button>

<button type="submit">Submit form</button>

</form>

在您的VueJs实例上,您定义并处理数据和表单提交。

var app = new Vue({
el: '#app',
data: {
  windows: [{
      windowImage: undefined,
      windowDamageDescription: 'First image description'
    },
    {
      windowImage: undefined,
      windowDamageDescription: 'Second image description'
    }
  ]
},
methods: {
  addNewWindow: function () {
    this.windows.push({
      windowImage: undefined,
      windowDamageDescription: ''
    })
  },
  onFileChange(e, index) {
    var files = e.target.files || e.dataTransfer.files
    if (!files.length)
      return

    this.windows[index].windowImage = files[0].name
  },
  postData() {
    fetch('/submitForm', {
        headers: {
          'Accept': 'application/json',
          'Content-Type': 'application/json'
        },
        method: 'POST',
        body: JSON.stringify({windows: this.windows})
      })
      .then(function (res) {
        console.log(res)
      })
      .catch(function (res) {
        console.log(res)
      })
  }
}
})

最后,在您的控制器中,您将创建一个接受这些数据的方法。

    [HttpPost("submitForm")]
    public IActionResult SubmitForm([FromBody] InsuranceForm insuranceForm)
    {
        if (insuranceForm == null)
            return BadRequest();

        // Do something with the data

        return Ok();
    }

请记住,如果要上传文件,则应该接受IFormFile类型的数据,而不是字符串。