gpt4 book ai didi

javascript - Lodash - "FAQS"应显示为 "FAQs"

转载 作者:行者123 更新时间:2023-11-30 00:28:04 26 4
gpt4 key购买 nike

我正在使用 lodash - 一个 JavaScript 实用程序库 - 与我的 AngularJS 代码。

<div ng-repeat="question in questions">
<label>{{question | startCase}}</label>
</div>

这是 startCase 的文档 https://lodash.com/docs#startCase

我有很多问题 - 大约 1000 个。如果问题有单词 FAQS,它应该显示为 FAQs。我该怎么做?

最佳答案

您可以通过这样制作过滤器来实现:

app.filter('fixFAQ', function () {
return function (input) {
return input.replace('FAQS', 'FAQs');
};
});

然后在startCase之后使用它:{{question |开始案例 | fixFAQ}}

关于javascript - Lodash - "FAQS"应显示为 "FAQs",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30663474/

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