From 50472200535de4d1e0d36b18a643e8f2edc7df99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E4=BA=9A=E7=90=AA?= Date: Thu, 9 May 2024 16:18:07 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20=E6=9B=B4=E6=96=B0uni-app-x=20request?= =?UTF-8?q?=E6=B3=A8=E6=84=8F=E4=BA=8B=E9=A1=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/tutorial/request.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tutorial/request.md b/docs/tutorial/request.md index 00b1f496..b9563460 100644 --- a/docs/tutorial/request.md +++ b/docs/tutorial/request.md @@ -318,5 +318,5 @@ hx的json转type工具,会对一些敏感符合和关键字自动转义。但 ## 注意事项 * request 接口内部通过[特殊方式读取了范型类型](../uts/generics.md#使用限制),不支持传入动态的范型:比如将外层方法的普通范型参数传入 request。所以目前尽量直接使用uni.request而不是封装。如确需封装,可不使用type,改用UTSJSONObject。 -* web端request接口目前没有返回UTSJSONObject类型数据而是一个普通对象,后续可能会调整为UTSJSONObject类型,如需兼容多端可以使用下标获取request返回的数据内容。 -* web端request接口目前不支持创建传入的泛型的实例 +* 4.01及之后版本web端request接口在dataType为`json`时返回UTSJSONObject,此前为普通js对象。 +* web端request接口目前不支持创建传入的泛型的实例,即泛型仅作为类型校验使用。 -- GitLab