gpt4 book ai didi

javascript - Angularjs如何在$scope中包含IF CONTAINS?

转载 作者:行者123 更新时间:2023-12-01 14:15:26 24 4
gpt4 key购买 nike

我想知道是否有可能知道 $scope 中是否有字符
例如像这样的东西,但在 angularJs

$scope.test = "Hi, How Are You?";
if($scope.test.Contains("?")) {
return true
} else {
return false
}

最佳答案

您可以替换 Containsmatch :

if($scope.test.match("?")) {
return true
} else {
return false
}

你甚至可以进一步优化整个代码块:
return !!$scope.test.match("?");

关于javascript - Angularjs如何在$scope中包含IF CONTAINS?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22916411/

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