Files
ZYZ/web-server/app/controller/home.ts

16 lines
313 B
TypeScript

import { Controller } from 'egg';
export default class HomeController extends Controller {
public async index() {
const { ctx } = this;
ctx.body = await ctx.service.test.sayHi('egg');
}
public async dev() {
const { ctx } = this;
await ctx.render('index',{
title: 'xxx'
});
}
}