You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

person.tsx 180 B

1234567891011
  1. interface IPerson {
  2. name: string;
  3. age: number;
  4. }
  5. function test(opt: IPerson) {
  6. let key: (keyof IPerson);
  7. for (key in opt) {
  8. console.log(opt[key]);
  9. }
  10. }

GeekAI 是基于 AI 大语言模型 API 实现的 AI 助手全套开源解决方案,自带运营管理后台,开箱即用。集成了 OpenAI, Azure, ChatGLM,讯飞星火,文心一言等多个平台的大语言模型。采用 Go + Vue3 + element-plus 实现。