In my local environment I use PHP7 and developed API Restful for an application that uses AngujarJS. I needed to do a get request for Api and pass an array as a parameter and I did it that way
$http.get("/Api/MinhaUrl.php", {
params: {...
My application has admob ads, when I put and did run it appeared that error:
FAILURE: Build failed with an exception.
What went wrong:
Execution failed for task ': app: processDebugGoogleServices'.
Please fix the version conflict e...
Hi, I want to create a table with the following values:
controllerScope.logsData = {
ajax: {
url: '/api/organizations/'+$rootScope.organization.id+'/alerts?type=logevent',
dataSrc: '',
beforeSend: function (xhr) {...
I'm trying to make a web service call on AngularJS, however I'm getting the following error message in the browser console (I tested it in chrome and Firefox):
XMLHttpRequest can not load
No Access-Control-Allow-Origin header is pre...
I have a N: N relationship and 3 tables: projeto , pagamento and projeto_pagamento . In a form, I want to register a project and 5 payments, what would be the best way to accomplish this insertion?
I thought of doing a post...
I'm trying to make a top menu in ionic but this menu is getting on top of the content, I'd like to know how to leave the content below the menu
Here is the code for the page:
<!DOCTYPE html>
<html>
<head>
<...
I have a table built with AngularJS Datatables as follows:
HTML
<table datatable="" dt-options="concessoes.standardOptions" dt-columns="concessoes.standardColumns" dt-instance="concessoes.dtInstance" class="table table-condensed tabl...
This is my code for the Modal
$scope.salvarObservacao = function (data) {
if(data.dsObservacaoEvento === undefined | data.dsObservacaoEvento === '' ) {
alert('Campo obrigatório.');
return false;
}
EventoService.s...