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

ko/api/configuration-cache #60

Merged
merged 3 commits into from
Apr 22, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions ko/api/configuration-cache.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
title: "API: 캐시 프로퍼티"
description: Nuxt.js는 더 나은 랜더 성능을 위해 lru-cache로 컴포넌트 캐시를 허용합니다.
---

# 캐시 프로퍼티

> Nuxt.js는 더 나은 랜더 성능을 위해 [lru-cache](https://github.com/isaacs/node-lru-cache)로 컴포넌트 캐시를 허용합니다.

## 사용법

- 타입: `Boolean` or `Object` (Default: `false`)

만약 타입이 object라면 [lru-cache options](https://github.com/isaacs/node-lru-cache#options)를 참고하세요:

`nuxt.config.js` 안에 정의된 `cache`키를 사용합니다.
```js
module.exports = {
cache: true
// 또는
cache: {
max: 1000,
maxAge: 900000
}
}
```

만약 `cache`의 기본키가 `true`로 주어진다면:

| key | Optional? | Type | Default | definition |
|------|------------|-----|---------|------------|
| `max` | Optional | Integer | 1000 | 캐시된 컴포넌트 최대 사이즈를 넘는 1001이 입력되었을 때, 새로운 데이터의 공간을 위해 제일 처음 입력된 값이 지워집니다. |
| `maxAge` | Optional | Integer | 900000 | 기본 값은 15분입니다. |
41 changes: 41 additions & 0 deletions ko/api/pages-validate.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
---
title: "API: 유효성 검증된 메서드"
description: Nuxt.js는 당신의 동적 route 컴포넌트 안에서 유효성 검증 메서드를 정의합니다.
---

# 유효성 검사 메서드

> Nuxt.js는 당신의 동적 route 컴포넌트 안에서 유효성 검증 메서드를 정의합니다.

- **타입:** `Function`

```js
validate({ params, query, store }) {
return true // params가 유효할 경우.
return false // 반대인 경우, Nuxt.js는 route 랜더를 멈추고 에러 페이지를 노출시킬 것입니다.
}
```

Nuxt.js는 당신의 동적 route 컴포넌트 안에서 유효성 검증 메서드를 정의합니다 (예제: `pages/users/_id.vue`).

유효성 검사에서 `true`가 나오지 않을 경우, Nuxt.js는 자동으로 404 에러 페이지를 로드합니다.

```js
export default {
validate ({ params }) {
// 숫자만 가능합니다.
return /^\d+$/.test(params.id)
}
}
```

당신의 [store](/guide/vuex-store)된 데이터를 검사하는 예제를 봅시다. ([nuxtServerInit action](/guide/vuex-store#the-nuxtserverinit-action) 기능이 나오기 전 예제):

```js
export default {
validate ({ params, store }) {
  // `params.id` 항목이 존재한다면 검사합니다.
  return store.state.categories.some((category) => category.id === params.id)
}
}
```
2 changes: 1 addition & 1 deletion ko/examples/auth-routes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: 인증 경로
description: Nuxt.js로 인증된 경로 예제
description: Nuxt.js를 사용한 인증 경로 예제
github: auth-routes
livedemo: https://nuxt-auth-routes.gomix.me
liveedit: https://gomix.com/#!/project/nuxt-auth-routes
Expand Down