首页 > web前端 > js教程 > 正文

如何确保 JavaScript 对象仅包含 TypeScript 中的接口属性?

Mary-Kate Olsen
发布: 2024-10-31 04:33:30
原创
431 人浏览过

How to Ensure JavaScript Objects Contain Only Interface Properties in TypeScript?

将 JavaScript 对象简化为接口属性

TypeScript 接口定义对象的契约并确保类型安全。但是,有时您可能需要确保对象仅包含接口指定的属性。

问题:

考虑以下 TypeScript 代码:

<code class="ts">interface MyInterface {
  test: string;
}

class MyTest implements MyInterface {
  test: string;
  newTest: string;
}

const test: MyTest = { test: "hello", newTest: "world" };
const reduced: MyInterface = test; // reduced still contains "newTest"</code>
登录后复制

为什么会出现这个问题?

在进行 REST 调用之前使用 Angular 的 toJson 方法时,额外的属性 (newTest) 包含在 JSON 中,这可能会导致以下问题

解决方案 1:解决方法

James Moey 提供了一个优雅的解决方法:将接口声明为类,并使用 Lodash 仅选择接口属性来自对象:

<code class="ts">class MyInterface {
  test: string = undefined;
}

import _ from 'lodash';
let reduced = new MyInterface();
_.assign(reduced, _.pick(before, _.keys(reduced)));</code>
登录后复制

此解决方案允许您保留类型安全,同时确保生成的对象仅具有接口属性。

解决方案 2:接口辅助函数

另一种方法是创建根据接口验证对象的辅助函数。例如:

<code class="ts">interface MyInterface {
  test: string;
}

function reduceObject(obj: any, targetInterface: any): MyInterface {
  const reduced = {};
  Object.keys(targetInterface).forEach((key) => {
    if (obj[key] !== undefined) {
      reduced[key] = obj[key];
    }
  });
  return reduced;
}

const test: MyTest = { test: "hello", newTest: "world" };
const reduced: MyInterface = reduceObject(test, MyInterface);</code>
登录后复制

这种方法使用循环自省来根据接口验证对象,并避免 Lodash 的 pick 函数的开销。

以上是如何确保 JavaScript 对象仅包含 TypeScript 中的接口属性?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!