作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是 Controller :
这是我的路线,我想在 id 之后添加新闻标题
例如:news/55/مایکروساوت،سرویس دو
[Route("News/{id}")]
public ActionResult ShowNews(int id)
{
var news = pageRepository.GetPageById(id);
if (news == null)
{
return HttpNotFound();
}
news.Visit += 1;
pageRepository.UpdatePage(news);
pageRepository.Save();
return View(news);
}
这是存储库页面:
private MyCmsContext db;
public PageRepository(MyCmsContext context)
{
this.db = context;
}
public IEnumerable<Page> GetAllPage()
{
return db.Pages;
}
public Page GetPageById(int pageId)
{
return db.Pages.Find(pageId);
}
这是接口(interface)页面存储库:
IEnumerable<Page> GetAllPage();
Page GetPageById(int pageId);
bool InsertPage(Page page);
bool UpdatePage(Page page);
bool DeletePage(Page page);
bool DeletePage(int pageId);
void Save();
最佳答案
这是在 ASP.Net Core 3.1 上测试的:如果你想有一个漂亮的标题(例如空格被破折号代替),首先创建一个这样的扩展方法:
namespace BulkyBook.Utility
{
public static class CleanURLMaker
{
public static string CleanURL(this string url)
{
// ToLower() on the string thenreplaces spaces with hyphens
string cleanURL = url.ToLower().Replace(" ", "-");
// cleanURL = System.Text.RegularExpressions.Regex.Replace(cleanURL , @"\s", "-");
cleanURL = cleanURL.Replace(" ", "-");
return cleanURL;
}
}
}
然后在您的 view.cshtml 中,在您引用/调用目标的同一位置,您必须传递您的标题,类似这样,但在发送标题之前,通过您在上面创建的扩展方法使其干净漂亮:
@using BulkyBook.Utility
<a asp-area="Customer" asp-controller="Home" asp-action="Details" asp-route-id="@item.ID" asp-route-Title="@item.Title.CleanURL()"> Details</a>
上面的代码等同于下面的代码:
<a href="/HelloWorld/65/this-is-my.first-title"> Details</a>
最后你的 action 方法将是这样的:(注意,如果你只想要一个干净的 URL,则不需要将 Title 作为参数传递给你的 action 方法):
[Route("HelloWorld/{id}/{Title}")]
public async Task<IActionResult> Details(int id)
{
Product product =await _unitOfWork.productRepository.GetByID(id);
return View(product);
}
最后您的链接将是这样的:没有人看到您的区域、 Controller 和操作方法名称
~/HelloWorld/23/this-is-my.first-title
如果您想从 url 中省略“点”和您的想法,只需在扩展方法中替换您最喜欢的正则表达式代码即可。
关于asp.net - 如何在 asp.net mvc 中的 url 中添加页面标题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62227312/
我是一名优秀的程序员,十分优秀!