gpt4 book ai didi

javascript - 查询参数区分大小写检查?

转载 作者:行者123 更新时间:2023-11-30 08:28:33 24 4
gpt4 key购买 nike

如何在我的代码中添加检查以使参数变量不区分大小写?我希望用户能够输入 ab=ac 作为查询参数或 AB=AC 或 aB=aC 以及任何其他变体。我的代码如下。根据当前的参数,headOne 或 headTwo 将显示在页面上。

 myObject: function() {
var parameter = window.location.search.includes("ab=ac");
var headOne = data.headerOne;
var headTwo = data.headerTwo;
var helpers = _.extend(this.constructor.__super__.myObject.call(this), {
header: parameter ? headerOne : headerTwo
});
return helpers;
}

最佳答案

您可以将其转换为小写并进行比较:

var parameter = window.location.search.toLowerCase().includes("ab=ac");
//------------------------------------^^^^^^^^^^^^^^

关于javascript - 查询参数区分大小写检查?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41369520/

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