Skip to content

Commit

Permalink
doc: fix login example (#911)
Browse files Browse the repository at this point in the history
  • Loading branch information
zuoFeng59556 authored Mar 16, 2023
1 parent 6139f74 commit 916d371
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions docs/.vitepress/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ const guideSiderbarConfig = [
text: "三分钟实现「Todo List」",
link: "/guide/quick-start/Todo",
},
// {
// text: "三分钟实现「用户登录/注册」",
// link: "/guide/quick-start/login",
// },
{
text: "三分钟实现「用户登录/注册」",
link: "/guide/quick-start/login",
},
],
},
{
Expand Down
20 changes: 10 additions & 10 deletions docs/guide/quick-start/login.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ title: 快速开始

# {{ $frontmatter.title }}

我们将在 [lafyun.com](https://www.lafyun.com) 上,通过开发一个简单的「用户登录/注册」的功能,快速体验 `laf` 云开发。
我们将在 [laf.dev](https://laf.dev) 上,通过开发一个简单的「用户登录/注册」的功能,快速体验 `laf` 云开发。

下面代码对于初学者来说可能难以理解,不过可以先体验一下云函数,后面再详细了解云函数的具体内容。

## 准备工作

1. 你需要在 [lafyun.com](https://console.lafyun.com) 上注册一个账户
2. 登录到 [lafyun.com 控制台](https://console.lafyun.com),点击左上角的 `新建` 按钮,创建一个空应用
1. 你需要在 [laf.dev](https://laf.dev) 上注册一个账户
2. 登录到 [laf.dev 控制台](https://laf.dev),点击左上角的 `新建` 按钮,创建一个空应用
3. 待应用成功启动后,点击右侧 「开发」 按钮,进入应用的「开发控制台」,接下来,我们将在「开发控制台」 进行第一个 `laf` 应用的功能开发

## 编写云函数
Expand All @@ -25,7 +25,7 @@ title: 快速开始

在「云函数」管理页面,点击 「新建函数」,创建注册云函数 `register`

点击 `register` 函数右侧的 「开发」按钮,进入 WebIDE,编写以下代码:
点击 `register` 函数,进入 WebIDE,编写以下代码:

```ts
import cloud from "@lafjs/cloud";
Expand Down Expand Up @@ -60,7 +60,7 @@ exports.main = async function (ctx: FunctionContext) {
};
```

点击右上角的 「显示调试面板」(Ctrl/Cmd + B) 即可调试运行,点击 「保存」 & 「发布」 函数即发布上线!
点击右上角的「发布」 函数即发布上线!

### 用户登录云函数

Expand Down Expand Up @@ -102,19 +102,19 @@ exports.main = async function (ctx: FunctionContext) {
};
```

点击右上角的 「显示调试面板」(Ctrl/Cmd + B) 即可调试运行,点击 「保存」 & 「发布」 函数即发布上线!
点击右上角的 「发布」 函数即发布上线!

## 使用 curl 调用云函数

你可以通过云函数列表页面,查看 & 复制云函数的调用地址
你可以在右上方复制云函数的调用地址
或将以下 curl 命令中的 `APPID` 替换成你的 APPID 后执行:

```bash
# 注册用户
curl -X POST -H "Content-Type: application/json" -d '{"username": "admin", "password": "admin"}' https://APPID.lafyun.com/register
curl -X POST -H "Content-Type: application/json" -d '{"username": "admin", "password": "admin"}' https://APPID.laf.dev/register

# 用户登录
curl -X POST -H "Content-Type: application/json" -d '{"username": "admin", "password": "admin"}' https://APPID.lafyun.com/login
curl -X POST -H "Content-Type: application/json" -d '{"username": "admin", "password": "admin"}' https://APPID.laf.dev/login


```
Expand All @@ -135,7 +135,7 @@ npm install laf-client-sdk
import { Cloud } from "laf-client-sdk";

const cloud = new Cloud({
baseUrl: "https://APPID.lafyun.com",
baseUrl: "https://APPID.laf.dev",
getAccessToken: () => localStorage.getItem("access_token"),
});

Expand Down

0 comments on commit 916d371

Please sign in to comment.