MVC課堂案例1 2 實現增刪改查以及分布頁面

2021-09-29 15:49:44 字數 2673 閱讀 2352

登陸頁面

public

actionresult

loginweb()

else

}return

view()

;}

登陸展示(前台)頁面

"viewport" content=

"width=device-width"

/>

loginweb<

/title>

<

/head>

"post" action=

"userlist"

>

使用者名稱:

"text" name=

"uname" id=

"uname"

/>

>

密碼:"text" name=

"upwd" id=

"upwd"

/>

>

"submit"

value

="登陸"

/>

>

<

/form>

<

/div>

<

/body>

註冊頁面
/// 

/// 註冊頁面

///

///

public

actionresult

register()

///

/// 註冊邏輯頁面

///

///

public

actionresult

userregister()

;//實現儲存提交

ucontext.userinfo.

insertonsubmit

(reg)

; ucontext.

submitchanges()

;//判斷使用者輸入資訊是否正確

if(name1 !="")

return

view()

;}

註冊展示(前台)頁面

"viewport" content=

"width=device-width"

/>

register<

/title>

"~/content/jquery-3.4.1.js"

>

<

/script>

function check()

if(pwd != npwd)

}<

/script>

<

/head>

"text-align:center"

>

"post" action=

"userregister"

>

使用者名稱:

"text" name=

"runame" id=

"runame"

/>

>

密碼:"text" name=

"rpwd" id=

"rpwd"

/>

>

確認密碼:

"text" name=

"srpwd" id=

"srpwd"

/>

>

"submit"

value

="確認註冊"

/>

<

/form>

<

/div>

<

/body>

刪除功能
public

actionresult

delete

(int uid)

新增頁面
/// 

/// 新增頁面

///

///

public

actionresult

add(

)///

/// 新增邏輯頁面

///

///

///

public

actionresult

adduser

(userinfo user)

else

}

修改頁面
/// 

/// 修改頁面

///

///

///

public

actionresult

change

(int uid)

///

/// 修改邏輯頁面

///

///

///

public

actionresult

comformchange

(userinfo u)

使用者個人資訊展示頁面
/// 

/// 使用者個人資訊展示頁面

///

///

///

public

actionresult

userlist

(int

? page)

MongoDB增刪改查的案例

首先我們需要注入一下mongotemplate 模板 autowired private mongotemplate mongotemplate 最常見的用法還是接受乙個 query 物件作為引數進行查詢 修改 刪除的操作。這裡簡單介紹一些 query 和 criteria 的語法 where對應的...

MVC框架新聞管理系統實現增刪改查

所涉及到的檔案 首先看下bean檔案寫到的是如下 news.class.php 宣告乙個類 class news function set type type function set title title function set main main function set remark re...

JDBC 實現增刪改查

public class notedaoimpl implements notedao catch exception e finally 修改操作 public void update note note throws exception catch exception e finally 刪除操...