In the code below I need to get the ng-pattern to receive 1 or 2 numbers, the format being in hours, that is, minimum 0 or 01 and maximum 24.
<input type="text" step="any" value="" ng-model="" min="0" max="24" ng-pattern="/^([0-2]{1}[0-...
I recently saw a course where ExpressJS was used for backend testing in JSON for an application and I was amazed, but I came up with several questions:
Could it be used in production?
Can an alternative be the most used technologies currently in...
I've never used any communication with Webhook, I'm currently receiving communication from the Moip Subscriptions API , when a new subscriber is registered I get a JSON with the event and subscriber information that was created.
I'm using R...
Hello, I have a code in angularJS but it only works when I am in the browser debug.
$scope.upload=function(){
var newFiles = [];
$scope.carregando = true;
angular.forEach($scope.files, function (item) {...
I have a screen that has a check box .. let's see;
<div class="form-group col-md-9 pull-right">
<label>Ativo:</label>
<label class="checkbox-inline"><input type="checkbox" ng-model="pess...
Look at my Angular Front End project
Brewer-ui
Now look at my Java Back-end project with Spring Boot
Brewer
Do not worry about my Back-end project, it's working fine, the problem is my angled Front End project, I'm trying to load...
I installed the bootstrap in the angle with this command:
npm install bootstrap @ next --save
and then include the path in the .angular-cli.json
"styles": [
"styles.css",
"../node_modules/bootstrap/dist/css/bootstrap.css"...
With angularjs I created a directive, and only imported using the tag and it was already available for use in any HTML file.
I used this to center some visual objects that were repeated in various parts of the system, such as navbar, sidebar, me...