我正在比较两个字符串,我想在比较之前小写一个字符串。我怎样才能做到这一点?
这是我的代码:

 this.products = response.responseData.sort(function(a,b){

                     if(a.product.productName < b.product.productName){
                         return -1;
                     }
                     if(a.product.productName > b.product.productName){
                         return 1;
                     }
                     return 0;
                 });

最佳答案

只需使用:

.toLowerCase()

方法。

在你的情况下:

if(a.product.productName.toLowerCase() < b.product.productName.toLowerCase()){
                         return -1;
                     }

关于javascript - 如何在Typescript中小写字符串?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51443173/

10-11 14:15