文件名称:rest_api:Phoenix REST API示例
文件大小:51KB
文件格式:ZIP
更新时间:2024-06-03 10:15:51
JavaScript
RestApi 基于: : 要启动新的Phoenix应用程序: 使用mix deps.get安装依赖mix deps.get 使用mix phoenix.server启动Phoenix端点 现在,您可以从浏览器访问localhost:4000 。 发布到API curl -H "Content-Type: application/json" -X POST -d '{"post": {"title":"foo","content":"bar"}}' http://localhost:4000/v1/posts
【文件预览】:
rest_api-master
----mix.lock(576B)
----.gitignore(372B)
----mix.exs(1KB)
----priv()
--------repo()
--------static()
----README.md(469B)
----web()
--------templates()
--------web.ex(2KB)
--------models()
--------views()
--------controllers()
--------router.ex(383B)
----config()
--------test.exs(535B)
--------config.exs(834B)
--------prod.exs(2KB)
--------dev.exs(1007B)
----lib()
--------rest_api()
--------rest_api.ex(972B)
----test()
--------support()
--------models()
--------views()
--------test_helper.exs(221B)
--------controllers()