跳到主要內容

[ASP][MVC] 使用 CheckBoxListFor 實作CheckBox


Step 0. 開啟Package Manager Console


輸入以下指令安裝MvcCheckBoxList
Install-Package MvcCheckBoxList


1.分別建立User.cs & Role.cs
public class Role
{      public Role(int roleID, string name)
    {
        RoleID = roleID;
        Name = name;
    }
     public int RoleID { get; set; }
     public string Name { get; set; }
 }

public class User
{
public int? UserID { get; set; }

public string Account { get; set; }

public ICollection<Role> Roles = new List<Role>();
}




2. 建立欲綁定在view上的model

public class UserViewModel
{
 

public UserViewModel()
{

AvailableRoles = new List<Role>();

SelectedRoles = new List<Role>();
}

public int? UserID { get; set; }

public string Account { get; set; }

public IEnumerable<Role> AvailableRoles { get; set; }

public IEnumerable<Role> SelectedRoles { get; set; }

public PostedRoles PostedRoles { get; set; }
 
}
public class PostedRoles
{
public string[] RoleIDs { get; set; }
}


注意PostedRoles  是用來接從view post回來的checkbox的選項

3. 建立Repository來取得Role的資料(為了簡化說明,所以沒有特意去串Db, 但這部分可以改寫成去Db裡撈Role的資料)

public static class RolesRepository
{
private static List<Role> _roles;

public static void Initializer()
{

_roles = new List<Role>();

_roles.Add(new Role(1, "Admin"));

_roles.Add(new Role(2, "Guest"));
}

public static Role Get(int id)
{

return _roles.FirstOrDefault(X => X.RoleID == id);
}

public static IEnumerable<Role> GetAll()
{

if (_roles == null)
{
Initializer();
}

return _roles;
}
}




4. 建立Service來處理增刪修査的商業邏輯
public class UserRoleService
{
public Role GetRole(int id)
{

return RolesRepository.Get(id);
}

public IEnumerable<Role> GetAllRoles()
{

return RolesRepository.GetAll();
}

public void CreateNewUser(UserViewModel model)
{

User user = new User()
{
UserID = model.UserID,
Account = model.Account
};

foreach (var roleId in model.PostedRoles.RoleIDs)
{

Role role = RolesRepository.Get(roleId);
user.Roles.Add(role);
}
//Do something
}
}



4. 在controller中新增Action, Create()來處理新增使用者的動作
並在其中建立一個 UserViewModel 然後以userRoleService.GetAll()附值給其成員AvailableRoles,最後再傳給view


public UserRoleService userRoleService = new UserRoleService();


public ActionResult Create()
{
var usr = new UserViewModel();

usr.AvailableRoles = userRoleService.GetAll();

return View(usr);
}

5. 使用 CheckBoxListFor實作CheckBox

<div class="form-group">

@Html.LabelFor(model => model.AvailableRoles, htmlAttributes: new { @class = "control-label col-md-2" })

<div class="col-md-10">
@Html.CheckBoxListFor(  model => model.PostedRoles.RoleIDs,
model => model.AvailableRoles,
x => x.RoleID,
x => x.Name,
model => model.SelectedRoles)

</div>
</div>
CheckBoxListFor會根據AvailableRoles 來建立CheckBox的內容
 
如果想設定default的選項
可以在步驟四的時候,附值給SelectedRoles
而PostedRoles.RoleIDs 則會儲存使用者最後submit的選擇

7. 處理從view回傳的資料
[HttpPost]
public ActionResult Create(UserViewModel model)
{
           
userRoleService.CreateNewUser(model);

return View();
}
在這裡我們呼叫userRoleService.CreateNewUser 來處理建立新使用者的商業邏輯

結果:


Sample Code:
https://github.com/andy51002000/CheckBoxListForExample.git


留言

這個網誌中的熱門文章

[解決方法] docker: permission denied

前言 當我們執行docker 指令時若出現以下錯誤訊息 docker: Got permission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock: Post http://%2Fvar%2Frun%2Fdocker.sock/v1.26/containers/create: dial unix /var/run/docker.sock: connect: permission denied. See 'docker run --help'. 表示目前的使用者身分沒有權限去存取docker engine, 因為docker的服務基本上都是以root的身分在執行的, 所以在指令前加sudo就能成功執行指令 但每次實行docker指令(就連docker ps)都還要加sudo實在有點麻煩, 正確的解法是 我們可以把目前使用者加到docker群組裡面, 當docker service 起來時, 會以這個群組的成員來初始化相關服務 sudo groupadd docker sudo usermod -aG docker $USER 需要退出重新登錄後才會生效 Workaround 因為問題是出在權限不足, 如果以上方法都不管用的話, 可以手動修改權限來解決這個問題 sudo chmod 777 /var/run/docker.sock https://docs.docker.com/install/linux/linux-postinstall/

[C#] Visual Studio, 如何在10分鐘內快速更改命名專案名稱

前言: 由於工作需要, 而且懶得再重寫類似的專案, 所以常常將之前寫的專案複製一份加料後, 再重新命名編譯 假設今天我有一個專案HolyUWP, 我想把它重新命名成 BestUWP 時該怎麼做? 以下是幾個簡單的的步驟 使用Visual Studio 2017 備份原來專案 更改Solution名稱 更改Assembly name, Default namespce 更改每支程式碼的Namespace 更改專案資料夾名稱 備份原來專案 由於怕改壞掉, 所以在改之前先備份 更改Solution名稱 更改sln的名稱, 這邊我改成BestUWP.sln 使用Visual Studio打開你的.sln, 右鍵點擊Solution後選擇Rename, 這邊我把它重新命名成BestUWP(跟檔案名稱一致) 必要的話可以順便修改Porject名稱 更改Assembly name, Default namespce 進入 Project > OOXX Properties    修改Assembly Name, Default namesapce 更改每支程式碼的Namespace 基本上隨便挑一支有用到預設Namesapce(HolyUWP)的程式碼來改就好了 重新命名後點擊Apply,  這個動作做完後所有用到舊Namespace的程式碼都會被改成新的 更改專案資料夾名稱 以上動作做完後, 基本上就可以把專案編譯出來測看看了~

[Visual Studio Code] 如何切換背景主題

在我們安裝完畢後,背景主題預設會是黑色 那如果不喜歡黑色 我們可以直接到 File > Preferences > Color Theme下做更換 點開Color Theme 後會發現,Visual Studio Code 內建了許多主題讓我們選擇 現在的Visual Studio Code提供Syntax HighLight的功能,方便我們複製貼上程式碼時能保有顏色 由於我希望複製貼上後的程式碼背景可以是白色的 所以我選擇了 Light(Visual Studio) 這個主題,結果如下