Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to get request body with customize token? #5

Open
fancyoung opened this issue Nov 11, 2016 · 6 comments
Open

How to get request body with customize token? #5

fancyoung opened this issue Nov 11, 2016 · 6 comments

Comments

@fancyoung
Copy link

The code support custom_tokens, but if the replacement is something like ctx.request.body,
I can't pass the option just like:

app.use(log4js.koaLogger(log4js.getLogger("http"), { level: 'auto',
    tokens: [
        { token: ':body', replacement: ctx.request.body}
    ],
    format: ':remote-addr - -' +
    ' ":method :url HTTP/:http-version"' +
    ' :status :content-length ":referrer"' +
    ' ":user-agent"' +
    ' :body'
}))

because ctx is not defined here.

I can use a wrapper, but is there any simple way to solve this problem?

@dominhhai
Copy link
Owner

You can pass the replacement as a replace function.

tokens: [
  { token: ':body', replacement: function() { return ctx.request.body } }
]

@fancyoung
Copy link
Author

But it seems can't use as Koa-middleware way,
such as

app.use(log4js.koaLogger(log4js.getLogger('http'), { level: 'auto', tokens: [
  { token: ':body', replacement: function() { return ctx.request.body } }
] }))

because ctx is not defined here.

@dominhhai
Copy link
Owner

dominhhai commented Nov 24, 2016

I have just added a new syntax to allow replacing token with ctx.

tokens: [
  { token: ':body', content: function(ctx) { return ctx.request.body } }
]

You can upgrade your package to v1.1.0 (for Koa v1) or v2.1.0 (for Koa v2).

@fancyoung
Copy link
Author

Wonderful.

Now I use { token: ':body', content: function(ctx) { return JSON.stringify(ctx.request.body) } } log the body'

@fancyoung
Copy link
Author

It not work, it save the first time request param, and return it everytime

@fancyoung fancyoung reopened this Dec 4, 2016
@dominhhai
Copy link
Owner

Which should be fix by this #8 PR.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants