mirror of https://github.com/rails/rails
Merge pull request #50785 from JunichiIto/add-note-to-params-hash
Add note about `params` hash in Action Controller Overview [ci skip]
This commit is contained in:
commit
5ade5d4173
|
@ -110,7 +110,10 @@ class ClientsController < ApplicationController
|
||||||
end
|
end
|
||||||
```
|
```
|
||||||
|
|
||||||
|
NOTE: The `params` hash is not a plain old Ruby Hash; instead, it is an [`ActionController::Parameters`][] object. While it behaves like Hash, it does not inherit from Hash.
|
||||||
|
|
||||||
[`params`]: https://api.rubyonrails.org/classes/ActionController/StrongParameters.html#method-i-params
|
[`params`]: https://api.rubyonrails.org/classes/ActionController/StrongParameters.html#method-i-params
|
||||||
|
[`ActionController::Parameters`]: https://api.rubyonrails.org/classes/ActionController/Parameters.html
|
||||||
|
|
||||||
### Hash and Array Parameters
|
### Hash and Array Parameters
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue