如何使用lodash获取值数组和对象数组之间的差值

How to get difference values between an array of values and array of object using lodash

我有两个数组作为

a1 = ['test1@gmail.com','test2@gmail.com','test3@gmail.com'];
a2 = [{email: 'test1@gmail.com'},{email: 'test2@gmail.com'}];

现在我想得到上面提到的这两个数组之间的区别

resultDifference = ['test3@gmail.com'];

如何仅使用 lodash 来实现这种差异结果。

您应该将您尝试过的内容添加到您的 post

const a1 = ["test1@gmail.com", "test2@gmail.com", "test3@gmail.com"];
const a2 = [{ email: "test1@gmail.com" }, { email: "test2@gmail.com" }];

const ans = _.difference(
  a1,
  a2.map((a) => a.email)
);