x-EricH-x
What is the purpose of alias a module inside the same module?
Hi, I am following the Programming Phoenix book and trying out different generators.
When I use the phx.gen.json generator, it created a view file that alias itself and I don’t understand what does it do and why it is needed.
the specific part that I don’t understand:
defmodule RumblWeb.FooView do
use RumblWeb, :view
alias RumblWeb.FooView
the full file:
defmodule RumblWeb.FooView do
use RumblWeb, :view
alias RumblWeb.FooView
def render("index.json", %{foos: foos}) do
%{data: render_many(foos, FooView, "foo.json")}
end
def render("show.json", %{foo: foo}) do
%{data: render_one(foo, FooView, "foo.json")}
end
def render("foo.json", %{foo: foo}) do
%{
id: foo.id,
}
end
end
Marked As Solved
benwilson512
Author of Craft GraphQL APIs in Elixir with Absinthe
Specifically, it makes this line work, where it can refer to FooView instead of RumblWeb.FooView. It could also do __MODULE__, but my guess is that the book just didn’t want to have to worry about introducing what __MODULE__ is.
5
Popular in Questions
Could someone help me? I'm making my first elixir program, number guessing game. I can't figure out how to convert the user's guess from ...
New
** (DBConnection.ConnectionError) connection not available and request was dropped from queue after 2733ms. You can configure how long re...
New
Hello, how can I check the Phoenix version ?
Thanks !
New
Hello, I have map which I want to convert it to string like this:
the map:
%{last_name: "tavakkoli", name: "shahryar"}
the string I ne...
New
I am trying to figure out how Mix knows whether the environment is test, dev, or prod -- where is this set?
Thanks.
New
When I run the Plug and I recompile I wind up having to use Ctrl C to quit iex and start again. Witht the help of rlwrap I can use the cu...
New
In templates/appointment/index.html.eex:
<%= for appointment <- @appointments do %>
<tr>
<td><%= appoi...
New
Credo is smart enough to check for (something like) this:
assert length(the_list) == 0
with this response:
Checking if an enum is empt...
New
Why is it that the mnesia database isn’t the most preferred database for use in Elixir/Phoenix?
New
If I have a string “1000 cfu/ml” . I want to remove the characters and / and space . So the string is like this
"1000"
What is the ...
New
Other popular topics
Hello, can anybody help here..? I have a list of players and I what to delete an element, but every for loop the list is reverting to ori...
New
We have an ECS cluster with 4 services, where each task joins a single cluster, via discovery ECS discovery service.
Currently when I de...
New
Surface is an experimental library built on top of Phoenix LiveView and its new LiveComponent API that aims to provide a more declarative...
New
Hi everyone,
One of the features added to Elixir early on to help integration with Erlang code was the idea of overridable function defi...
New
I have an umbrella app.
Some of the apps inside depend on other apps in the umbrella, unsurprisingly.
I'm writing a test for one of t...
New
I have a relationship of love and hate with Elixir. Lots of things are just absolutely right, but there are some things that are kind of ...
New
I am using the Starship cross-shell prompt – it seems pretty nice, but I get some errors:
[WARN] - (starship::utils): Executing command ...
New
Currently suffering from paralysis by [HTTP client] analysis. This is rather unusual in Elixirland as there tends to be consensus on the ...
New
There are pre-rolled solutions for other frameworks that do work. However, Phoenix does not seem to have these. Have people had good expe...
New
For some reason my phoenix channels are working for me in my local dev environment, but as soon as I deploy via Docker, I get a 403 error...
New







