私たちは今、一日のように検索してきましたが、ビューからコントローラーにデータを渡すことができません。実際、ユーザーがIndex()ビューのドロップダウンリストから時間ブロックのStartTimeとして時間を選択するようにします。現時点では、次のコードを使用する必要があります。
コントローラーでのアクション
public ActionResult genBlocks(string StartTime, FormCollection collection)
{
int blocksPerDay = 4;
int strH, strM;
List<Block> blocks = new List<Block>();
for (int i = 0; i < blocksPerDay; i++)
{
if (i != 0)
{
strH = blocks[i-1].EndTime.Hour;
strM = blocks[i-1].EndTime.Minute;
}
else
{
strH = Convert.ToInt32(collection["StartTime"]);
strM = 0;
}
Block block = new Block
{
FieldDayId = 1,
Available = true,
StartTime = DateTime.Today + new TimeSpan(strH, strM, 0),
EndTime = DateTime.Today + new TimeSpan(strH, strM + (db.Sports.Find(1).Duration*(i+1)), 0),
};
blocks.Add(block);
db.Blocks.Add(block);
db.SaveChanges();
}
return RedirectToAction("Index");
}
そして私たちの見解では、私はフォームを実装しました
@using (Html.BeginForm("genBlocks"))
{
<input type="text"name="StartTime" />
@Html.DropDownList("StartTime", String.Empty)
<div id="genBlocks" class="button">
<input type="submit" />
</div>
}
だから私たちはdorpdownlistとテキストボックスでそれを試しましたが、どれもうまくいきません...