- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我正在开发一些将在其他内部项目中使用的库(一种 API 代理)。我想定义方法以便于使用,但我很难使用类型断言:
首先,我有一个用于所有端点方法的工厂:
export type Params<TQueryParams> = {
customConfig?: object;
fullResponse?: boolean;
} & (TQueryParams extends undefined ? { queryParams?: undefined } : { queryParams: TQueryParams })
export const getFactory = <
TQueryParams extends object | undefined = undefined
>({ path }: any) => async (
{ queryParams, customConfig, fullResponse = false }: Params<TQueryParams>
): Promise<any> => {
// some irrelevant factory code
return {};
};
我已经使用了一些魔法,所以根据 TQueryParams
是否需要它,但这还不够。
所以现在当我想定义所有端点并使用工厂时:
// Case 1 - no interface
export const getFile = getFactory({
path: '/api/file'
});
// I'd like for this one to not throw error
getFile();
// These will not throw error - as intended
getFile({});
getFile({
fullResponse: true
});
// This will throw error - as intended
getFile({
queryParams: {}
});
// Case 2 - interface with all optional props
export interface ImageQueryParams {
width?: number;
height?: number;
}
export const getImage = getFactory<ImageQueryParams>({
path: '/api/image'
});
// All of them should be ok, but only last will not throw error
getImage();
getImage({});
getImage({
fullResponse: true
});
getImage({
queryParams: {}
});
// Case 3 - interface with mandatory props
export interface DataQueryParams {
id: number;
sort?: string;
}
export const getData = getFactory<DataQueryParams>({
path: '/api/data'
});
// All will throw error - as intended
getData();
getData({});
getData({
fullResponse: true
});
getData({
queryParams: {}
});
// This one will not throw error - as intended
getData({
queryParams: {
id: 2131241
}
});
只有情况 3 按预期工作。
我特别想实现一个解决方案,如果没有界面或它包含所有可选 Prop ,我将能够不传递任何内容(getImage();
)并且没问题。
最佳答案
我对这些类型定义并不满意(我希望有一些更精简和通用的东西)但它们似乎适用于您的用例:
type CanBeOmitted<T, Y = T, N = never> =
{} extends T ? Y : // T is weak (all props are optional), or
undefined extends T ? Y : // T can be undefined
N;
类型别名 CanBeOmitted<T, Y, N>
检查是否 T
是全可选对象类型(也称为 "weak type" )或 undefined
- 兼容类型。如果是,它返回 Y
;如果不是,则返回 N
(默认为 never
)。我们可以用它几次来建立你的 Params
类型。
这里是:
export type Params<TQueryParams> =
CanBeOmitted<TQueryParams, [undefined?]> |
[
{
customConfig?: object,
fullResponse?: boolean
} & (
{ queryParams: TQueryParams } |
CanBeOmitted<TQueryParams, { queryParams?: never }>
)
];
我做的不同的一件事是使它成为包含参数的元组类型。如果参数可以完全省略,一个optional tuple被退回。
这是 getFactory
:
export const getFactory = <
TQueryParams extends object | undefined = undefined
>({ path }: any) => async (
...args: Params<TQueryParams>
): Promise<any> => {
// get rid of conditional types
const arg = args[0] as {
customConfig?: object,
fullResponse?: boolean,
queryParams?: TQueryParams
} | undefined;
const queryParams = arg ? arg.queryParams : undefined;
const customConfig = arg ? arg.customConfig : undefined;
const fullResponse = (arg ? arg.fullResponse : undefined) || false;
// some irrelevant factory code
return {};
};
请注意 Params<TQueryParams>
被用作rest tuple而不是作为单个参数。当该元组是可选的时,它允许返回值 getFactory()
以零参数调用。另请注意,我们不能再假设该参数存在,因此我们必须更改获取 queryParams
的方式。 , customConfig
, 和 fullResponse
作为实现中的变量。
好吧,让我们看看它是如何工作的:
// Case 1 - no interface
export const getFile = getFactory({
path: '/api/file'
});
getFile(); // okay
getFile({}); // okay
getFile({
fullResponse: true
}); // okay
getFile({
queryParams: {}
}); // error, {} is not undefined
// Case 2 - interface with all optional props
export interface ImageQueryParams {
width?: number;
height?: number;
}
export const getImage = getFactory<ImageQueryParams>({
path: '/api/image'
});
getImage(); // okay
getImage({}); // okay
getImage({
fullResponse: true
}); // okay
getImage({
queryParams: {}
}); // okay
export interface DataQueryParams {
id: number;
sort?: string;
}
// Case 3 - interface with mandatory props
export const getData = getFactory<DataQueryParams>({
path: '/api/data'
});
getData(); // error, expected 1 arg
getData({}); // error, queryParams missing
getData({
fullResponse: true
}); // error, queryParams missing
getData({
queryParams: {}
}); // error, id missing
getData({
queryParams: {
id: 2131241
}
}); // okay
我认为这就是您要找的。好的,希望对你有帮助。祝你好运!
关于 typescript :如果所有 Prop 都是可选的,有没有办法不需要对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56518507/
我的一位教授给了我们一些考试练习题,其中一个问题类似于下面(伪代码): a.setColor(blue); b.setColor(red); a = b; b.setColor(purple); b
我似乎经常使用这个测试 if( object && object !== "null" && object !== "undefined" ){ doSomething(); } 在对象上,我
C# Object/object 是值类型还是引用类型? 我检查过它们可以保留引用,但是这个引用不能用于更改对象。 using System; class MyClass { public s
我在通过 AJAX 发送 json 时遇到问题。 var data = [{"name": "Will", "surname": "Smith", "age": "40"},{"name": "Wil
当我尝试访问我的 View 中的对象 {{result}} 时(我从 Express js 服务器发送该对象),它只显示 [object][object]有谁知道如何获取 JSON 格式的值吗? 这是
我有不同类型的数据(可能是字符串、整数......)。这是一个简单的例子: public static void main(String[] args) { before("one"); }
嗨,我是 json 和 javascript 的新手。 我在这个网站找到了使用json数据作为表格的方法。 我很好奇为什么当我尝试使用 json 数据作为表时,我得到 [Object,Object]
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
我听别人说 null == object 比 object == null check 例如: void m1(Object obj ) { if(null == obj) // Is thi
Match 对象 提供了对正则表达式匹配的只读属性的访问。 说明 Match 对象只能通过 RegExp 对象的 Execute 方法来创建,该方法实际上返回了 Match 对象的集合。所有的
Class 对象 使用 Class 语句创建的对象。提供了对类的各种事件的访问。 说明 不允许显式地将一个变量声明为 Class 类型。在 VBScript 的上下文中,“类对象”一词指的是用
Folder 对象 提供对文件夹所有属性的访问。 说明 以下代码举例说明如何获得 Folder 对象并查看它的属性: Function ShowDateCreated(f
File 对象 提供对文件的所有属性的访问。 说明 以下代码举例说明如何获得一个 File 对象并查看它的属性: Function ShowDateCreated(fil
Drive 对象 提供对磁盘驱动器或网络共享的属性的访问。 说明 以下代码举例说明如何使用 Drive 对象访问驱动器的属性: Function ShowFreeSpac
FileSystemObject 对象 提供对计算机文件系统的访问。 说明 以下代码举例说明如何使用 FileSystemObject 对象返回一个 TextStream 对象,此对象可以被读
我是 javascript OOP 的新手,我认为这是一个相对基本的问题,但我无法通过搜索网络找到任何帮助。我是否遗漏了什么,或者我只是以错误的方式解决了这个问题? 这是我的示例代码: functio
我可以很容易地创造出很多不同的对象。例如像这样: var myObject = { myFunction: function () { return ""; } };
function Person(fname, lname) { this.fname = fname, this.lname = lname, this.getName = function()
任何人都可以向我解释为什么下面的代码给出 (object, Object) 吗? (console.log(dope) 给出了它应该的内容,但在 JSON.stringify 和 JSON.parse
我正在尝试完成散点图 exercise来自免费代码营。然而,我现在只自己学习了 d3 几个小时,在遵循 lynda.com 的教程后,我一直在尝试确定如何在工具提示中显示特定数据。 This code
我是一名优秀的程序员,十分优秀!