Cette page n'est pas encore disponible en français, sa traduction est en cours. Si vous avez des questions ou des retours sur notre projet de traduction actuel, n'hésitez pas à nous contacter.
Metadata
ID:rails-best-practices/http-status-code-symbols
Language: Ruby
Severity: Notice
Category: Best Practices
Description
This rule encourages the use of symbolic representations of HTTP status codes over their numeric counterparts, making the code more self-explanatory and easier to understand. Numeric HTTP status codes can be cryptic and hard to remember, especially for developers who are not familiar with them.
To adhere to this rule, simply replace the numeric HTTP status code with its symbolic equivalent in your code. For example, instead of using 403 for a forbidden request, use :forbidden.
Non-Compliant Code Examples
classApplicationController<ActionController::Basedefaccess_deniedrenderstatus:403# Avoid using numeric HTTP status codeendend