文件名称:create-rest-api
文件大小:1KB
文件格式:ZIP
更新时间:2024-06-13 11:19:54
JavaScript
创建休息API 提供了报价文件。 您可以帮助ExpressJS (我们稍后将在MEAN堆栈中使用它来制作完整的应用程序) 目标是创建一个REST API: 并对其进行CRUD(创建,读取,更新和删除)。 首先执行您的方法,向对象添加属性,然后进行修改,删除。 使用Express时,您需要实现以下方法: // respond with "Hello World!" on the homepage app . get ( '/' , function ( req , res ) { res . send ( 'Hello World!' ) ; } ) ; // accept POST request on the homepage app . post ( '/' , function ( req , res ) { res . send ( 'Got a POST
【文件预览】:
create-rest-api-master
----quotes.js(498B)
----README.md(1KB)