2
Good night,
I have a mobile app, I’m submitting a form with a input type hidden
but I want that input to have the value passed from another controller but I’m not getting through I tried ng-init
but it doesn’t work
Input
<input type="hidden" ng-model="input.estabelecimento">
Controller
.controller('SugerirCorrecao', function($scope, $http, sessionService) {
$scope.BtnSugerirCorrecao= function (input){
$http.post("https://www.sabeonde.pt/api/api_sugerir_correcao.php?user_report=" + sessionService.get('nome') + "&telefone=" + input.telefone + "&morada=" + input.morada + "&encerrado=" + input.encerrado + "&menu=" + input.menu + "&detalhes=" + input.detalhes + "&estabelecimento=" + input.estabelecimento).success(function (data) {
alert("A sua sugestão foi enviada com sucesso!");
$scope.editar_perfil = data;
}).
error(function (data) {
alert("Não foi possivel enviar a sua sugestão!");
});
}
})
Controller of the title I want to pass
.controller('TitEstabelecimento', function($scope, $http, $stateParams) {
$http.get("https://www.sabeonde.pt/api/api_tit_estabelecimento.php?slug="+$stateParams.EstabelecimentoSlug).success(function (data) {
$scope.tit_estabelecimento = data;
});
})