You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
“Although applications usually have a single endpoint, Phoenix doesn’t limit the number of endpoints your application can have. For example, you could have your main application endpoint running on port 80 (HTTP) and 443 (HTTPS), as well as a specific admin endpoint running on a special port—let’s say 8080 (HTTPS)—with specific characteristics and security constraints.”
There are two kinds of plugs: module plugs and function plugs. A function plug is a single function. A module plug is a module that provides two functions with some configuration details. Either way, they work the same.
phoenix 可以设置多个入口
pipeline就是一个plug的集合
Ecto.Changeset
值得一试之 put_change和get_change有两种类型的plugs
函数级别的plug就是一个函数,module级别的plug 是一个module 额外定义两个函数和一些config
The text was updated successfully, but these errors were encountered: