larksuite / oapi-sdk-go

larksuite oapi sdk by golang
MIT License
430 stars 87 forks source link

使用多维表格sdk,如果使用描述字段则会触发系统异常。 #87

Open poppyred opened 2 years ago

poppyred commented 2 years ago

代码:

    f := NewFeishuClient()
    req := larkbitable.NewListAppTableFieldReqBuilder().
        AppToken("").
        TableId("").
        ViewId("").
        TextFieldAsArray(true).
        PageSize(20).
        Build()
    ctx := context.TODO()
    iterator, err := f.client.Bitable.AppTableField.List(ctx, req)

异常:image

造成原因:使用了描述字段,猜测系统后台struct字段类型不匹配无法unmarshal。

image

尝试修复,删除描述内容后错误依旧。该字段一旦创建删除后也是一个空串,字段还是存在。

zhailuxubyte commented 2 years ago

代码:

  f := NewFeishuClient()
  req := larkbitable.NewListAppTableFieldReqBuilder().
      AppToken("").
      TableId("").
      ViewId("").
      TextFieldAsArray(true).
      PageSize(20).
      Build()
  ctx := context.TODO()
  iterator, err := f.client.Bitable.AppTableField.List(ctx, req)

异常:image

造成原因:使用了描述字段,猜测系统后台struct字段类型不匹配无法unmarshal。

image

尝试修复,删除描述内容后错误依旧。该字段一旦创建删除后也是一个空串,字段还是存在。

欢迎加群讨论: image。我测试OK的