DS
Size: a a a
DS
C
DS
DS

C
DS

DS
C
DS
C
DS
C
ALTER SEQUENCE “Categories_id_seq" RESTART WITH числоDS
ALTER SEQUENCE “Categories_id_seq" RESTART WITH числоCategories_id_seq? Это какое-то стандартное название чего-то? Аля TableName_PKname_seq?C
DS
DS
МВ
const Router = require("koa-router");
const router = new Router();
router
.get("/", async (ctx, _next) => {
ctx.successResponse("true");
})
module.exports = router;const router = require("./core.js");
router
.get("/", async (ctx, _next) => {
ctx.successResponse("false");
})
module.exports = router;y
const Router = require("koa-router");
const router = new Router();
router
.get("/", async (ctx, _next) => {
ctx.successResponse("true");
})
module.exports = router;const router = require("./core.js");
router
.get("/", async (ctx, _next) => {
ctx.successResponse("false");
})
module.exports = router;ctx.respond = false, который позволяет не отдавать ответ за тебя. Попробуй его применить, а во втором случае уже нормально тело отдатьNP