初めて質問させていただきます。
チェックボックスの値を取得し、trueフラグによってExcel帳票に出力する判定を行う処理を作成しています。
ところが、cshtml(view)からチェックボックスの判定を取得しよとしたところ、index(Model)では取得できてますが、出力用のプログラム(Generator)で必ずfalseになってしまいます。
おそらくプロパティの取得の仕方に問題があるのではないかと思うのですが、いろんな方法を試してみましたが、勉強不足のためかうまくいきませんでした。
言語:C#(ASP.NET Framework4.5 MVC)
開発環境:Visual Studio 2013 Pro
質問者:C#は独学で学習時間は半年程度
関係がある部分を抜き出して記述してみます(usingの整理が上手くできていなくてすみません)。
(index.cshtml) @model A.Models.index ~ <div> <select id="select_ABC" name="select_ABC" size="5" multiple="multiple"></select> </div> <div> @Html.EditorFor(model => model.checkbox) @Html.LabelFor(model => model.checkbox) </div> ~ @section scripts //ABC選択フォームを選択するときに? <script type="text/javascript"> $(function () { //サブミット時(ダウンロード) $("#form1").submit(function (e) { util.selectboxAllSelect("#select_ABC"); return true; }); }) </script> (index.cs) using System; using Collections.Generic; using System.Linq; using System.Web; using A.Generator.Report; namespace A.Models { public class index { [DisplayName("選択フォーム")] public string[] select_ABC { get; set; } [DisplayName("チェックボックス")] public bool checkbox { get; set; } } } (Control.cs) using System; using OfficeOpenXml; using Collections.Generic; using System.Data.Linq.SqlClient; using System.IO; using System.Text; using System.Web; using A.Generator.Report; namespace A.Controllers { public class Control : Controller { ///<param name="postdata"></param> ///<returns></returns> ///<remarks> ///Excel出力の実行 ///</remarks> public AcctionResult Report(index postdata) { var generator.Generate(); //コレクションの生成(checkboxとは関係ないコレクションです) postdata.select_ABC = postdata.select_ABC ?? (new string[] { }); //ABCを選択したコレクション foreach (var item in postdata.select_ABC) { generator.abccodes.Add(new AbcOutputCode(item)); }//チェックボックス以外にpostdataの内容です //印字用条件のセット generator.SetFromSession(); //印字用検索条件の設定(画面から出力、セッション) //帳票の生成 generator.Generate(); //帳票を出力しレスポンスとして返す return generator.Response(); //生成したEXCELをWebのレスポンスとして返す } } } (Report.cs) using System; using System.Collections.Generic; using System.Data.Linq.SqlClient; using System.IO; using System.Linq; using System.Text; using System.Text.RegularExpressions; using System.Threading.Tasks; using System.Web; using System.Web.Mvc; using A.Models; namespace A.Generator.Report { ///<summary> ///帳票(Excel)出力 ///</summary> public class ReportGenerator { public List<Info> Infs = new List<Info(); //出力用のIDを選択するリストを呼出 public bool checkbox { get; set; } ///<summary> ///コンストラクタ ///</summary> public Report(DefultContext dbcontext) ///DefaultContextはテーブルのデータを受け渡すクラスで、DbContextを継承しています : base(dbcontext) { } //帳票出力 public override void Generate() { //データ行の出力 foreach(var sellist in Infs) { excelHelper.CellOutput(sellist.id) excelHelper.BeginDataLine(); foreach(var item in id.abc) //選択されたABCのデータ行 { excelHelper.Output(item.PrintData()); } if(checkbox) { excelHelper.CellOutPut(sellist.check) } excelHelper.NewRow(); } //見出し行の出力 excellHelper.HeaderOut("ID") foreach (var item in abc) { OutputHeader(excelHelper, item, "ABC"); } If(checkbox) { excelHelper.HeaderOut("チェック"); } } } }
試した方法
・(Control.cs)のpostdata(内容はAとcheckbox)をウォッチリストに追加して、checkboxの値がtrueになっているか監視しています
→プログラムを修正していたら、勝手にfalseになる場合とならない場合がありました、どちらにしても結果は出力されないになりましたが
・(index.chhtml)@model A.Models.index → @model A.Generator.Report
→にしてみましたが、結果は変わらずでした
つたない文章で申し訳ありませんが、よろしくお願いします。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2016/03/02 02:27 編集
2016/03/02 04:13
2016/03/02 04:18
2016/03/02 05:07
2016/03/02 05:37
2016/03/02 06:50
2016/03/02 06:55
2016/03/02 09:42
2016/03/02 10:34
2016/03/02 11:10 編集
2016/03/03 00:34
2016/03/03 02:49
2016/03/04 07:14 編集