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

#396 - 这个挑战开始,我们将尝试实现一个响应式的数据请求方式 #397

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<script setup lang="ts">
import { ref, Ref } from 'vue'

/**
* 实现一个请求的Hooks
*/
function useRequest(url: string | Ref<string>) {
const data = ref(null)
const error = ref(null)
const loading = ref(false)

/**
你的实现
*/

return {
data,
error,
loading
}
}

// 这里提供了一个基准的url,您可以以这个为基准创建响应式的url
// string url
const baseUrl = 'https://jsonplaceholder.typicode.com/todos/'

// Ref<string> url
/**
你的实现
*/

const { data, error, loading } = useRequest(baseUrl)

</script>

<template>
<button v-for="i in 5" @click="id = i">{{ i }}</button>

<div v-if="error">{{ error.message }}</div>
<div v-else-if="data">
<pre>{{ data }}</pre>
</div>
<div v-else-if="loading">Loading...</div>
</template>
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<!--info-header-start-->
<!--info-header-end-->


At the beginning of this challenge, we will try to implement a response data request method


<!--info-footer-start-->
<!--info-footer-end-->
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<!--info-header-start-->
<!--info-header-end-->


这个挑战开始,我们将尝试实现一个响应式的数据请求方式


<!--info-footer-start-->
<!--info-footer-end-->
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
difficulty: null
title: >-
At the beginning of this challenge, we will try to implement a response data
request method
tags: union, array
author:
github: sunshineLixun
name: Hello Li

Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
difficulty: null
title: 这个挑战开始,我们将尝试实现一个响应式的数据请求方式
tags: union, array
author:
github: sunshineLixun
name: Hello Li