请求命名空间
请求命名空间是一个简化 请求处理程序 声明的对象。
¥Request namespace is an object that simplifies declaration of request handlers.
MSW 带有以下标准请求命名空间:
¥MSW comes with the following standard request namespaces:
命名空间 | 描述 |
---|---|
http | 描述 RESTful API 的命名空间。 |
graphql | 描述 GraphQL API 的命名空间。 |
所有命名空间都可以从 msw
包导入并在同一网络描述中使用。
¥All namespaces can be imported from the msw
package and used within the same network description.
// handlers.js
import { http, graphql } from 'msw'
export const handlers = [
http.get('/user/:id', resolver),
graphql.mutation('SignIn', resolver),
]
标准命名空间
¥Standard namespaces
通过以下链接了解有关标准命名空间的更多信息:
¥Learn more about the standard namespaces by following these links: