外贸货源_元旦ppt模板免费下载_谷歌chrome浏览器官方下载_html网页设计模板
2024/12/23 8:34:58
来源:https://blog.csdn.net/2401_83279223/article/details/144516651
浏览:
次
关键词:外贸货源_元旦ppt模板免费下载_谷歌chrome浏览器官方下载_html网页设计模板
外贸货源_元旦ppt模板免费下载_谷歌chrome浏览器官方下载_html网页设计模板
步骤(常规方法)
- 新建一个控制器--
LarsController.cs
using Microsoft.AspNetCore.Mvc;
namespace Blog.Controller;
public class LarsController:Controller -----继承
{public IActionResult Index(){return View();}
}
- 获取id
// program.cs中默认值是idpublic IActionResult Index(int id)
{return Content(id.ToString());
}
- 获取方法中的name
public class Students
{public string name{get;set;}=null!; ----字符串需要=null!public int age{get;set;}
}// 在LarsController中
[HttpPost]
public IActionResult Create([FromBody]Students stu)
{return Content(stu.name);
}//[FromBody]传递复杂数据