gpt4 book ai didi

javascript - 在这种情况下如何作曲

转载 作者:行者123 更新时间:2023-11-30 19:37:05 25 4
gpt4 key购买 nike

var articles = [
{
title: 'Everything Sucks',
author: { name: 'Debbie Downer' }
},
{
title: 'If You Please',
author: { name: 'Caspar Milquetoast' }
}
];

var names = _.map(_.compose(_.get('name'), _.get('author')))
// returning ['Debbie Downer', 'Caspar Milquetoast']

现在根据上面给定的 articles 和函数 names,创建一个 bool 函数,说明给定的人是否写过任何文章。

isAuthor('New Guy', articles) //false
isAuthor('Debbie Downer', articles)//true

我在下面的尝试

var isAuthor = (name, articles) => {
return _.compose(_.contains(name), names(articles))
};

但是它在 jsbin 上失败并出现以下错误。也许有人可以尝试解释我的尝试出了什么问题,以便我可以从错误中吸取教训

Uncaught expected false to equal function(n,t){return r.apply(this,arguments)}

最佳答案

Compose 返回一个函数,因此您需要将 articles 传递给该函数。 Compose 会将 articles 传递给 getNames,并将 getNames 的结果传递给 contains(name)(其中还返回一个函数),它将处理作者姓名,并返回 bool 值 result:

const { map, path, compose, contains } = R

const getNames = map(path(['author', 'name']))

const isAuthor = (name) => compose(
contains(name),
getNames
)

const articles = [{"title":"Everything Sucks","author":{"name":"Debbie Downer"}},{"title":"If You Please","author":{"name":"Caspar Milquetoast"}}]

console.log(isAuthor('New Guy')(articles)) //false
console.log(isAuthor('Debbie Downer')(articles)) //true
<script src="https://cdnjs.cloudflare.com/ajax/libs/ramda/0.26.1/ramda.js"></script>

关于javascript - 在这种情况下如何作曲,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55826887/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com