3

部分ビューでリストを自動生成したい。

_Layout.cshtml

@Html.Partial("../Transaction/_Transaction")

トランザクションコントローラー

public JsonResult transactionlist()
        {
            List<Transaction> TransactionList = new List<Transaction>().ToList();
            string Usercache = MemoryCache.Default[User.Identity.Name] as string;

            int UsercacheID = Convert.ToInt32(Usercache);
            if (Usercache == null)
            {
                int UserID = (from a in db.UserProfiles
                              where a.UserName == User.Identity.Name
                              select a.UserId).First();
                UsercacheID = UserID;
                MemoryCache.Default[User.Identity.Name] = UsercacheID.ToString();
            }
            var Account = (from a in db.UserAccount
                           where a.UserId == UsercacheID
                           select a).First();

            var DBTransaction = from a in db.Transaction
                                where a.AccountId == Account.AccountId
                                select a;

            var DBTransactionList = DBTransaction.ToList();
            for (int i = 0; i < DBTransactionList.Count; i++)
            {
                TransactionList.Add(DBTransactionList[i]);
            }
            ViewBag.acountsaldo = Account.Amount;

            return Json(TransactionList, JsonRequestBehavior.AllowGet);
        }`

送信ボタンなどのない単純なリストを作成するには、どのよう_Transaction.cshtmlにコーディングすればよいですか?

4

2 に答える 2

4

コントローラー アクションを呼び出して、部分ビューを返す必要があります。また、ビューバッグの代わりにビューモデルを使用してください。

レイアウトまたは親ビュー/部分ビュー:

@Html.Action("Transaction", "YourController")

部分的なビュー:

@model TransactionModel
@foreach (Transaction transaction in Model.TransactionList) {
    // Do something with your transaction here - print the name of it or whatever
}

モデルを見る:

public class TransactionModel {
    public IEnumerable<Transaction> TransactionList { get; set; }
}

コントローラ:

public class YourController
{
    public ActionResult Transaction()
        {
            List<Transaction> transactionList = new List<Transaction>().ToList();
            // Your logic here to populate transaction list
            TransactionModel model = new TransactionModel();
            model.TransactionList = transactionList;

            return PartialView("_Transaction", model);
        }
}
于 2013-10-21T22:42:49.990 に答える
4

1 つの方法は、ページにアイテムのリストを返させ、それらをパーシャルにフィードさせることです。

function ActionResult GetMainTransactionView()
{
  List<Transaction> transactions=GetTransactions();
  return PartialView("TransactionIndex",transactions);
}

TransactionIndex.cshtml

@model List<Transaction>
@Html.Partial("../Transaction/_Transaction",model)

Main.chtml

<a id="transactionLink" href='@Url.Action("GetMainTransactionView","Transaction")'/>
于 2013-10-21T22:55:34.110 に答える