diff --git "a/\351\231\210\346\201\255\347\204\225/\347\254\224\350\256\260/11.18\347\254\224\350\256\260.md" "b/\351\231\210\346\201\255\347\204\225/\347\254\224\350\256\260/11.18\347\254\224\350\256\260.md" new file mode 100644 index 0000000000000000000000000000000000000000..6beb42433b97dc70906230ef404c0cfedc74130d --- /dev/null +++ "b/\351\231\210\346\201\255\347\204\225/\347\254\224\350\256\260/11.18\347\254\224\350\256\260.md" @@ -0,0 +1,21 @@ +## Linux +1. Debian 包管理器 apt +- Debian +- Ubuntu +- Kali +2. 红帽子 包管理器dnf或者yum +- RHEL +- Fedroa +- Centos Stream RHEL上游版本,就是什么新的内容、特性会在这个上面进行测试 +3. 运行 +- 运行页面--dotnet blog.dll +- 配置管理 +``` +server{ + listen 80; + server_name hzhf.wumengtong.cn; + location / { + proxy_pass http://localhost:5000; + } +} +``` \ No newline at end of file diff --git "a/\351\231\210\346\201\255\347\204\225/\347\254\224\350\256\260/11.20\347\254\224\350\256\260.md" "b/\351\231\210\346\201\255\347\204\225/\347\254\224\350\256\260/11.20\347\254\224\350\256\260.md" new file mode 100644 index 0000000000000000000000000000000000000000..36d29bcf04be933ba413037576d66bb54110319d --- /dev/null +++ "b/\351\231\210\346\201\255\347\204\225/\347\254\224\350\256\260/11.20\347\254\224\350\256\260.md" @@ -0,0 +1,26 @@ +## 传参 +- 获取ID: + ``` + [HttpPost](区分2种相同方法)public IActionResult Index(int id) + { + return View(id TOstring()); + } + ``` +- 注意:在program.cs中默认是id访问,若需改动参数名称,则此处也要改成一致的参数名,否则会运行失败 +- 获取一个学生学生的姓名,年龄,代码如下 + + ``` + public IActionResult Index([Frombody](获取下面的内容,传递复杂内容) Students stu) + { + return View(stu.name); + } + ``` +- 在外面建一个方法: + +- + ``` + public ClassStudents { + public string name {get;set;} = null!;(防止字符不为空) + public int Age {get;set;} + } + ``` \ No newline at end of file