timmyse2 / VeganNewWorld

草食系新世界 (使用ASP.NET MVC Core2.x製作的蔬食商品展示網站)
1 stars 0 forks source link

同一個View使用多個model的資料 #14

Closed timmyse2 closed 5 months ago

timmyse2 commented 5 months ago
  1. 完成的訂單View中同時有3-4組model: Order, Order Detail, Customer, Product.
  2. 放在Detail List.cshtml中, model是OrderDetail
  3. 暫用ViewData傳order, customer, product
timmyse2 commented 5 months ago
  1. ViewBag|ViewData較簡單: 適合少量、弱型別的資料; 但不正式?
  2. View Model: 適合大量、強型別的資料; 不適合重覆的view?
  3. Partial View: 適合重覆共用
  4. View Component: 較新(Core MVC), partial view + controller
timmyse2 commented 5 months ago
  1. 暫用ViewBag|data
  2. 實驗改用View Model成功.
  3. 之後需另補Partial View與View Component等正規化作法