Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我编写了一个简单的 Ember 代码来访问 REST 服务。由于我是 Ember 的新手,我不知道如何在 localhost 上运行它。
Ember 是一个客户端框架,它不在服务器上运行,它被提供给客户端(浏览器)并在其上运行。您可以为此目的使用任何网络服务器(apache、nginx...)。
如果你只是想玩它,你可以创建一个 index.html 文件,其中包含 ember 和你的 javascript 文件,然后用浏览器打开它
您需要使用可以在您的机器上本地运行的网络服务器。如果那是您的意思,请为您的问题提供更多详细信息。
例如:
您可以使用服务Ruby Gem
gem install serve
从您的 ember 应用程序的根目录
serve
在浏览器中导航到
http://localhost:4000/