Commit c93b6487 authored by 郭志伟's avatar 郭志伟

fix: 文件还原

parent b78253dd
...@@ -2,19 +2,19 @@ import { Controller, Context } from 'egg'; ...@@ -2,19 +2,19 @@ import { Controller, Context } from 'egg';
export default class ActivityController extends Controller { export default class ActivityController extends Controller {
public async home(ctx: Context) { public async home(ctx: Context) {
// const redisKey = `quantum-blocks:page:${ctx.params.id}`; const redisKey = `quantum-blocks:page:${ctx.params.id}`;
// let body = await ctx.service.redis.get(redisKey); let body = await ctx.service.redis.get(redisKey);
// if (body) { if (body) {
// ctx.logger.info('请求redis成功 key: %j', redisKey); ctx.logger.info('请求redis成功 key: %j', redisKey);
// } }
// if (!body) { if (!body) {
// let apollo = {}; let apollo = {};
// if (process.env.NODE_ENV === 'production' && process.env.EGG_SERVER_ENV === 'sit') { if (process.env.NODE_ENV === 'production' && process.env.EGG_SERVER_ENV === 'sit') {
// apollo = ctx.app.config.apollo || {}; apollo = ctx.app.config.apollo || {};
// } }
let body = await ctx.renderView('activity.js', { url: ctx.url }); body = await ctx.renderView('activity.js', { url: ctx.url, apollo });
// await ctx.service.redis.set(redisKey, body); await ctx.service.redis.set(redisKey, body);
// } }
ctx.body = body; ctx.body = body;
} }
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment