Skip to content

Commit

Permalink
docs: fix dimension typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ldsink committed Jul 21, 2020
1 parent 8c74d5a commit 59e59be
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/guide-0.x/dev/dynamic-load.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ order: 12

## 快速使用

通常情况下,只需要在路由配置的文件里按照页面纬度控制是否需要按需加载即可
通常情况下,只需要在路由配置的文件里按照页面维度控制是否需要按需加载即可

```diff
import React from 'react';
Expand Down
4 changes: 2 additions & 2 deletions docs/guide/advance/code-splitting.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ order: 6

## 基于路由代码分割

推荐以路由纬度分割代码,每个路由对应的代码会生成一个独立的 js 和 css。
推荐以路由维度分割代码,每个路由对应的代码会生成一个独立的 js 和 css。

### 配置式路由

Expand Down Expand Up @@ -65,7 +65,7 @@ createApp(appConfig);

## 非路由代码分割

除了路由纬度,我们也可以做一些更小粒度比如组件级别的代码分割:
除了路由维度,我们也可以做一些更小粒度比如组件级别的代码分割:

```ts
import { lazy } from 'ice';
Expand Down
2 changes: 1 addition & 1 deletion docs/guide/advance/proxy.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ order: 10
1. 访问前端页面地址代理后端接口:访问 `npm start` 启动的页面地址 `http://127.0.0.1:3333`,然后将页面中发出的请求代理到前端调试服务(devServer),然后通过调试服务向后端发起实际的接口请求
2. 访问后端页面地址代理前端资源:访问后端服务提供的页面 url 地址,此时页面中通常加载的都不是本地调试的前端资源,因此无法联调,需要通过工具进行资源地址的代理

| 纬度\方案 | 访问前端页面地址代理后端接口 | 访问后端地址代理前端资源 |
| 维度\方案 | 访问前端页面地址代理后端接口 | 访问后端地址代理前端资源 |
|------------------------|---------------------------|------------------------|
|浏览器中打开的页面地址 | http://127.0.0.1:3333 | 用户真实访问的地址如:https://taobao.com |
|是否支持接口鉴权 | 不支持(本地页面没有用户信息) | 支持 |
Expand Down
2 changes: 1 addition & 1 deletion docs/guide/basic/store.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ icejs 内置集成了 icestore 状态管理方案,并在此基础上进一步

## 目录约定

icejs 支持 **全局状态****页面状态** 两种纬度
icejs 支持 **全局状态****页面状态** 两种维度

- 应用状态:应用级别,整个应用都可以使用
- 页面状态:页面级状态,只能在对应页面消费,通常用在偏复杂的业务场景
Expand Down
2 changes: 1 addition & 1 deletion docs/guide/develop/plugin-dev.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ $ npm init ice <your-plugin-name>
1. `index.ts`:通常用于做一些工程相关的事情,比如更改 webpack 配置、构建结束后执行一些其他任务等。需保证该文件作为 npm 包入口。
2. `runtime.ts`:实现一些运行时能力,比如 config/request 插件。注意: 旧版本的`module.ts`暂时兼容,但在未来不受支持。需保证该文件与 `index.ts` 位于同一目录下。

下面也会按照这两个纬度来分别介绍
下面也会按照这两个维度来分别介绍

## 工程能力定制

Expand Down
2 changes: 1 addition & 1 deletion docs/guide/migrate.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ order: 4

飞冰的脚手架从 `ice-scripts@1.x``ice-scripts@2.x` 到 icejs 经过了三个大的版本变化,这些版本变化都是结合我们的业务实践以及用户诉求不断演进的,在能力和规范性上都在不断提高,核心的一些差别:

| 纬度\版本 | icejs 1.x | ice-scripts 2.x | ice-scripts 1.x |
| 维度\版本 | icejs 1.x | ice-scripts 2.x | ice-scripts 1.x |
|-------------------|-------------------|-------------------|-------------------|
| 定位 | 研发框架 | 构建工具 | 构建工具 |
| 配置文件 | build.json | ice.config.js | package.json(buildConfig) |
Expand Down

0 comments on commit 59e59be

Please sign in to comment.