我的表单中有一系列表单字段
tableView.register(UITableViewCell.self, forCellReuseIdentifier: "cell")
然后我有一个这样的文本区域
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
tableView.register(UITableViewCell.self, forCellReuseIdentifier: "cell")
var cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) as UITableViewCell
cell.textLabel?.text = tableData[indexPath.row]
return cell
}
我正在尝试遍历textarea单词的每一行并复制以形成输入字段。 我尝试使用下面的代码,并且在正常环境下工作正常
<div class="book-form">
<input type="text" id="book_qty" name="book_qty[0]" value="" >
<input type="text" id="book_unit" name="book_unit[0]" value="" >
<input type="text" id="book_name" name="book_name[0]" value="" >
<input type="text" id="book_notes" name="book_notes[0]" value="" >
<input type="text" id="book_qty" name="book_qty[1]" value="" >
<input type="text" id="book_unit" name="book_unit[1]" value="" >
<input type="text" id="book_name" name="book_name[1]" value="" >
<input type="text" id="book_notes" name="book_notes[1]" value="" >
</div>
问题是“ book_notes”字段,尽管前三个字段是必填字段,但是note字段可能有也可能没有值。 我假设,我必须将textarea的每一行作为一个单独的数组(3个单词+ 1个空格用于注释)并将单词复制到相应的表单字段中。备注字段可能有多个空格。
我该怎么做?
谢谢 SAQ