AspNetCore.Docs/aspnetcore/tutorials/first-mvc-app/details.md

56 lines
4.1 KiB
Markdown
Raw Normal View History

2016-10-29 01:35:15 +08:00
---
title: Part 10, examine the Details and Delete methods of an ASP.NET Core app
2016-10-29 01:35:15 +08:00
author: rick-anderson
description: Part 10 of tutorial series on ASP.NET Core MVC.
2018-01-29 23:21:31 +08:00
ms.author: riande
2018-12-21 08:42:01 +08:00
ms.date: 12/13/2018
no-loc: [Home, Privacy, Kestrel, appsettings.json, "ASP.NET Core Identity", cookie, Cookie, Blazor, "Blazor Server", "Blazor WebAssembly", "Identity", "Let's Encrypt", Razor, SignalR]
2016-10-29 01:35:15 +08:00
uid: tutorials/first-mvc-app/details
---
2018-03-22 08:21:36 +08:00
# Part 10, examine the Details and Delete methods of an ASP.NET Core app
2016-10-29 01:35:15 +08:00
2016-12-17 14:53:35 +08:00
By [Rick Anderson](https://twitter.com/RickAndMSFT)
2016-10-29 01:35:15 +08:00
Open the Movie controller and examine the `Details` method:
[!code-csharp[](start-mvc/sample/MvcMovie22/Controllers/MoviesController.cs?name=snippet_details)]
2018-12-21 08:42:01 +08:00
The MVC scaffolding engine that created this action method adds a comment showing an HTTP request that invokes the method. In this case it's a GET request with three URL segments, the `Movies` controller, the `Details` method, and an `id` value. Recall these segments are defined in *Startup.cs*.
2016-10-29 01:35:15 +08:00
2019-12-04 07:21:50 +08:00
[!code-csharp[](start-mvc/sample/MvcMovie3/Startup.cs?highlight=5&name=snippet_1)]
2016-10-29 01:35:15 +08:00
EF makes it easy to search for data using the `FirstOrDefaultAsync` method. An important security feature built into the method is that the code verifies that the search method has found a movie before it tries to do anything with it. For example, a hacker could introduce errors into the site by changing the URL created by the links from `http://localhost:{PORT}/Movies/Details/1` to something like `http://localhost:{PORT}/Movies/Details/12345` (or some other value that doesn't represent an actual movie). If you didn't check for a null movie, the app would throw an exception.
2016-10-29 01:35:15 +08:00
Examine the `Delete` and `DeleteConfirmed` methods.
[!code-csharp[](start-mvc/sample/MvcMovie22/Controllers/MoviesController.cs?name=snippet_delete)]
2016-10-29 01:35:15 +08:00
Note that the `HTTP GET Delete` method doesn't delete the specified movie, it returns a view of the movie where you can submit (HttpPost) the deletion. Performing a delete operation in response to a GET request (or for that matter, performing an edit operation, create operation, or any other operation that changes data) opens up a security hole.
The `[HttpPost]` method that deletes the data is named `DeleteConfirmed` to give the HTTP POST method a unique signature or name. The two method signatures are shown below:
[!code-csharp[](start-mvc/sample/MvcMovie/Controllers/MoviesController.cs?name=snippet_delete2)]
[!code-csharp[](start-mvc/sample/MvcMovie/Controllers/MoviesController.cs?name=snippet_delete3)]
2016-10-29 01:35:15 +08:00
The common language runtime (CLR) requires overloaded methods to have a unique parameter signature (same method name but different list of parameters). However, here you need two `Delete` methods -- one for GET and one for POST -- that both have the same parameter signature. (They both need to accept a single integer as a parameter.)
There are two approaches to this problem, one is to give the methods different names. That's what the scaffolding mechanism did in the preceding example. However, this introduces a small problem: ASP.NET maps segments of a URL to action methods by name, and if you rename a method, routing normally wouldn't be able to find that method. The solution is what you see in the example, which is to add the `ActionName("Delete")` attribute to the `DeleteConfirmed` method. That attribute performs mapping for the routing system so that a URL that includes /Delete/ for a POST request will find the `DeleteConfirmed` method.
Another common work around for methods that have identical names and signatures is to artificially change the signature of the POST method to include an extra (unused) parameter. That's what we did in a previous post when we added the `notUsed` parameter. You could do the same thing here for the `[HttpPost] Delete` method:
2016-11-22 08:28:03 +08:00
```csharp
// POST: Movies/Delete/6
2019-04-02 21:59:36 +08:00
[HttpPost]
2016-11-22 08:28:03 +08:00
[ValidateAntiForgeryToken]
public async Task<IActionResult> Delete(int id, bool notUsed)
```
2016-11-10 13:17:21 +08:00
2017-09-30 09:05:00 +08:00
### Publish to Azure
For information on deploying to Azure, see [Tutorial: Build an ASP.NET Core and SQL Database app in Azure App Service](/azure/app-service/tutorial-dotnetcore-sqldb-app).
2017-09-30 09:05:00 +08:00
2018-04-05 07:51:35 +08:00
> [!div class="step-by-step"]
> [Previous](validation.md)