Skip to content

Commit

Permalink
update: translate packages/react-routem/docs/api/*.md (#63)
Browse files Browse the repository at this point in the history
* update: translate packages/react-router-dom/docs/api/*.md

* update: translate packages/react-routem/docs/api/BrowserRouter.md

* update: translate packages/react-routem/docs/api/BrowserRouter.md

* update: translate packages/react-routem/docs/api/*.md
  • Loading branch information
songda1013 authored and QC-L committed Mar 5, 2018
1 parent e4d6969 commit 12e3e9e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions packages/react-router-dom/docs/api/BrowserRouter.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { BrowserRouter } from 'react-router-dom'

## basename: string

所有地址的基本网址。 如果您的应用程序是从服务器上的子目录提供的,则需要将其设置为子目录。 格式正确的基本名应该有一个前导斜线,但是结尾不能有斜线。
所有地址的基本网址。如果您的应用程序是从服务器上的子目录提供的,则需要将其设置为子目录。格式正确的基本名应该有一个前导斜线,但是结尾不能有斜线。

```jsx
<BrowserRouter basename="/calendar"/>
Expand All @@ -26,7 +26,7 @@ import { BrowserRouter } from 'react-router-dom'

## getUserConfirmation: func

用于确认导航的功能。 默认使用 [`window.confirm`](https://developer.mozilla.org/en-US/docs/Web/API/Window/confirm)
用于确认导航的功能。默认使用 [`window.confirm`](https://developer.mozilla.org/en-US/docs/Web/API/Window/confirm)

```jsx
// this is the default behavior
Expand All @@ -40,7 +40,7 @@ const getConfirmation = (message, callback) => {

## forceRefresh: bool

如果为 `true`,则路由器将在页面导航中使用整页刷新。 您可能只希望在 [browsers that don't support the HTML5 history API](http://caniuse.com/#feat=history)
如果为 `true`,则路由器将在页面导航中使用整页刷新。您可能只希望在 [browsers that don't support the HTML5 history API](http://caniuse.com/#feat=history)

```jsx
const supportsHistory = 'pushState' in window.history
Expand All @@ -49,7 +49,7 @@ const supportsHistory = 'pushState' in window.history

## keyLength: number

`location.key` 的长度。 默认为 6。
`location.key` 的长度。默认为 6。

```jsx
<BrowserRouter keyLength={12}/>
Expand Down
6 changes: 3 additions & 3 deletions packages/react-router-dom/docs/api/HashRouter.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

使用 URL 的 hash 部分(即 window.location.hash )的 `<Router>` 使您的 UI 与 URL 保持同步。

**重要提示:**Hash 历史记录不支持 `location.key``location.state` 在以前的版本中,我们试图填补行为,但存在我们无法解决的边缘案例。 任何需要此行为的代码或插件都将无法使用。 由于此技术仅用于支持传统浏览器,因此我们鼓励您配置服务器以便与 `<BrowserHistory>` 配合使用。
**重要提示:**Hash 历史记录不支持 `location.key``location.state`。在以前的版本中,我们试图填补行为,但存在我们无法解决的边缘案例。 任何需要此行为的代码或插件都将无法使用。由于此技术仅用于支持传统浏览器,因此我们鼓励您配置服务器以便与 `<BrowserHistory>` 配合使用。

```jsx
import { HashRouter } from 'react-router-dom'
Expand All @@ -23,7 +23,7 @@ import { HashRouter } from 'react-router-dom'

## getUserConfirmation: func

用于确认导航的功能。 默认使用 [`window.confirm`](https://developer.mozilla.org/en-US/docs/Web/API/Window/confirm)
用于确认导航的功能。默认使用 [`window.confirm`](https://developer.mozilla.org/en-US/docs/Web/API/Window/confirm)

```jsx
// this is the default behavior
Expand All @@ -37,7 +37,7 @@ const getConfirmation = (message, callback) => {

## hashType: string

用于 `window.location.hash` 的编码类型。 可用的值是:
用于 `window.location.hash` 的编码类型。可用的值是:

- `"slash"` - 创建像 `#/` 和的 `#/sunshine/lollipops` hash 表
- `"noslash"` - 创建像 `#` 和的 `#sunshine/lollipops` hash 表
Expand Down

0 comments on commit 12e3e9e

Please sign in to comment.