我有
<uib-progressbar class="progress-striped active" value="100" type="warning" ng-hide="{{isLoaded}}"></uib-progressbar>
我希望显示此进度条(ng-hide),直到isLoaded为真..
我在NameLists控制器中的脚本是
$scope.isLoaded = false;
$http({
method: 'POST',
url: 'services/getLists.php'
}).success(function(data, status, headers, config){
$scope.isLoaded=true;
console.log(data);
}).error(function(data, status, headers, config)
{
});
加载数据后,我已将isLoaded更改为true,但进度条未隐藏。
答案 0 :(得分:2)
尝试:
declare @vchrText varchar(max)
set @vchrText = 'AB&CDC'
WHILE PATINDEX('%[^a-zA-Z0-9]%', @vchrText) > 0
Begin
SET @vchrText = STUFF(@vchrText,
PATINDEX('%[^a-zA-Z0-9&]%',
@vchrText), 1, '')
End
print @vchrText
没有curlies。