使用CLI通过CLI创建具有CRUD函数对象的REST控制器
lb4 controller media
指向现有实体媒体模型的现有MediaRepository
两者都是使用lb4 CLI生成的。
已使用/ media *的所有REST路由创建了MediaController类
/ ping路由工作正常,因此我为它查找了任何特殊的路由配置,以查看是否有可能混淆了/ media的配置,但没有明显的问题。
具有以下内容的网页的/ media响应的HTTP Get请求:
<h1>NotFoundError</h1>
<h2><em>404</em> Endpoint "GET /media" not found.</h2>
可能需要进行一些基本配置或设置,但我只是没有看到它。
MediaController类
import {
Count,
CountSchema,
Filter,
repository,
Where,
} from '@loopback/repository';
import {
post,
param,
get,
getFilterSchemaFor,
getWhereSchemaFor,
patch,
put,
del,
requestBody, Request, RestBindings, ResponseObject
} from '@loopback/rest';
import { Media } from '../models';
import { MediaRepository } from '../repositories';
export class MediaController {
constructor(
@repository(MediaRepository)
public mediaRepository: MediaRepository,
) { }
@post('/media', {
responses: {
'200': {
description: 'Media model instance',
content: { 'application/json': { schema: { 'x-ts-type': Media } } },
},
},
})
async create(@requestBody() media: Media): Promise<Media> {
return await this.mediaRepository.create(media);
}
@get('/media/count', {
responses: {
'200': {
description: 'Media model count',
content: { 'application/json': { schema: CountSchema } },
},
},
})
async count(
@param.query.object('where', getWhereSchemaFor(Media)) where?: Where<Media>,
): Promise<Count> {
return await this.mediaRepository.count();
}
@get('/media', {
responses: {
'200': {
description: 'Array of Media model instances',
content: {
'application/json': {
schema: { type: 'array', items: { 'x-ts-type': Media } },
},
},
},
},
})
async find(
@param.query.object('filter', getFilterSchemaFor(Media)) filter?: Filter<Media>,
): Promise<Media[]> {
return await this.mediaRepository.find(filter);
}
@patch('/media', {
responses: {
'200': {
description: 'Media PATCH success count',
content: { 'application/json': { schema: CountSchema } },
},
},
})
async updateAll(
@requestBody() media: Media,
@param.query.object('where', getWhereSchemaFor(Media)) where?: Where<Media>,
): Promise<Count> {
return await this.mediaRepository.updateAll(media, where);
}
@get('/media/{id}', {
responses: {
'200': {
description: 'Media model instance',
content: { 'application/json': { schema: { 'x-ts-type': Media } } },
},
},
})
async findById(@param.path.string('id') id: string): Promise<Media> {
return await this.mediaRepository.findById(id);
}
@patch('/media/{id}', {
responses: {
'204': {
description: 'Media PATCH success',
},
},
})
async updateById(
@param.path.string('id') id: string,
@requestBody() media: Media,
): Promise<void> {
await this.mediaRepository.updateById(id, media);
}
@put('/media/{id}', {
responses: {
'204': {
description: 'Media PUT success',
},
},
})
async replaceById(
@param.path.string('id') id: string,
@requestBody() media: Media,
): Promise<void> {
await this.mediaRepository.replaceById(id, media);
}
@del('/media/{id}', {
responses: {
'204': {
description: 'Media DELETE success',
},
},
})
async deleteById(@param.path.string('id') id: string): Promise<void> {
await this.mediaRepository.deleteById(id);
}
}
答案 0 :(得分:0)
所以我在评估其他框架时将lb4放在一旁。
今天回到我的lb4演示项目。从那以后没有任何变化。启动了应用程序。
npm run start
浏览到 localhost:3000 / media
令我惊讶的是,它返回了一个json响应。现在我的响应数组为空,它应该返回了某些东西,因为mongodb数据源中有文档,但这是一个单独的问题。