Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Q
quantum-blocks-h5
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ui
quantum-blocks-h5
Commits
0aa55b47
Commit
0aa55b47
authored
Sep 23, 2021
by
郭志伟
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(activity): 还原
parent
96b55162
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
5 deletions
+1
-5
activity.ts
app/controller/activity.ts
+1
-5
No files found.
app/controller/activity.ts
View file @
0aa55b47
...
@@ -2,11 +2,6 @@ import { Controller, Context } from 'egg';
...
@@ -2,11 +2,6 @@ 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
)
{
// 开发环境不走redis缓存
if
(
process
.
env
.
NODE_ENV
===
'
development
'
)
{
ctx
.
body
=
await
ctx
.
renderView
(
'
activity.js
'
,
{
url
:
ctx
.
url
});
return
;
}
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
)
{
...
@@ -21,5 +16,6 @@ export default class ActivityController extends Controller {
...
@@ -21,5 +16,6 @@ export default class ActivityController extends Controller {
await
ctx
.
service
.
redis
.
set
(
redisKey
,
body
);
await
ctx
.
service
.
redis
.
set
(
redisKey
,
body
);
}
}
ctx
.
body
=
body
;
ctx
.
body
=
body
;
// ctx.body = await ctx.renderView('activity.js', { url: ctx.url });
}
}
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment