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