Error displaying data - scope - AngularJS
up vote
1
down vote
favorite
I have a problem with displaying data using AngularJS.
So my application is based on AngularJS and CodeIgniter 3.
I've created a validation in CodeIgniter written in the form, everything works.
public function create()
valid_email
On the AngularJS side, I wanted errory to appear.
controllersAdmin.controller('userCreate', function( $scope, $http, $timeout )
$scope.user = ;
$scope.user.role = 'user';
$scope.createUser = function( user )
$http(
method: 'POST', url: 'api/admin/users/create/' ,
data:
user : user,
login : user.login,
email : user.email,
password : user.password,
passconf : user.passconf
).then(function ( errors )
if ( errors )
$scope.errors = errors;
else
$scope.success = true;
$timeout(function()
$scope.success = false;
$scope.user = ;
, 3000 );
,function (error)
console.log('Blad we wczytywaniu danych');
);
);
I created $scope.errors = errors;
When I display it with errors
- data is displayed.
"data":"records":"login":"Pole Imię jest wymagane.","email":"Pole Email jest wymagane.","password":"Pole Hasło jest wymagane.","passconf":"Pole Powtórz hasło jest wymagane.","status":200,"config":"method":"POST","transformRequest":[null],"transformResponse":[null],"jsonpCallbackParam":"callback","url":"api/admin/users/create/","data":"user":"role":"user","headers":"Accept":"application/json, text/plain, */*","Content-Type":"application/json;charset=utf-8","statusText":"OK","xhrStatus":"complete"
However, when I give errors.login
, the data is not displayed. Can I count on little help?
angularjs codeigniter-3
add a comment |
up vote
1
down vote
favorite
I have a problem with displaying data using AngularJS.
So my application is based on AngularJS and CodeIgniter 3.
I've created a validation in CodeIgniter written in the form, everything works.
public function create()
valid_email
On the AngularJS side, I wanted errory to appear.
controllersAdmin.controller('userCreate', function( $scope, $http, $timeout )
$scope.user = ;
$scope.user.role = 'user';
$scope.createUser = function( user )
$http(
method: 'POST', url: 'api/admin/users/create/' ,
data:
user : user,
login : user.login,
email : user.email,
password : user.password,
passconf : user.passconf
).then(function ( errors )
if ( errors )
$scope.errors = errors;
else
$scope.success = true;
$timeout(function()
$scope.success = false;
$scope.user = ;
, 3000 );
,function (error)
console.log('Blad we wczytywaniu danych');
);
);
I created $scope.errors = errors;
When I display it with errors
- data is displayed.
"data":"records":"login":"Pole Imię jest wymagane.","email":"Pole Email jest wymagane.","password":"Pole Hasło jest wymagane.","passconf":"Pole Powtórz hasło jest wymagane.","status":200,"config":"method":"POST","transformRequest":[null],"transformResponse":[null],"jsonpCallbackParam":"callback","url":"api/admin/users/create/","data":"user":"role":"user","headers":"Accept":"application/json, text/plain, */*","Content-Type":"application/json;charset=utf-8","statusText":"OK","xhrStatus":"complete"
However, when I give errors.login
, the data is not displayed. Can I count on little help?
angularjs codeigniter-3
Is the a login property on the errors object? Could you post the what is coming back?
– Mickers
Nov 9 at 17:31
@Mickers errors displays such data "data":"records":"login":"Pole Imię jest wymagane.","email":"Pole Email jest wymagane.","password":"Pole Hasło jest wymagane.","passconf":"Pole Powtórz hasło jest wymagane.","status":200,"config":"method":"POST","transformRequest":[null],"transformResponse":[null],"jsonpCallbackParam":"callback","url":"api/admin/users/create/","data":"user":"role":"user","headers":"Accept":"application/json, text/plain, /","Content-Type":"application/json;charset=utf-8","statusText":"OK","xhrStatus":"complete"
– danko12
Nov 9 at 18:39
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I have a problem with displaying data using AngularJS.
So my application is based on AngularJS and CodeIgniter 3.
I've created a validation in CodeIgniter written in the form, everything works.
public function create()
valid_email
On the AngularJS side, I wanted errory to appear.
controllersAdmin.controller('userCreate', function( $scope, $http, $timeout )
$scope.user = ;
$scope.user.role = 'user';
$scope.createUser = function( user )
$http(
method: 'POST', url: 'api/admin/users/create/' ,
data:
user : user,
login : user.login,
email : user.email,
password : user.password,
passconf : user.passconf
).then(function ( errors )
if ( errors )
$scope.errors = errors;
else
$scope.success = true;
$timeout(function()
$scope.success = false;
$scope.user = ;
, 3000 );
,function (error)
console.log('Blad we wczytywaniu danych');
);
);
I created $scope.errors = errors;
When I display it with errors
- data is displayed.
"data":"records":"login":"Pole Imię jest wymagane.","email":"Pole Email jest wymagane.","password":"Pole Hasło jest wymagane.","passconf":"Pole Powtórz hasło jest wymagane.","status":200,"config":"method":"POST","transformRequest":[null],"transformResponse":[null],"jsonpCallbackParam":"callback","url":"api/admin/users/create/","data":"user":"role":"user","headers":"Accept":"application/json, text/plain, */*","Content-Type":"application/json;charset=utf-8","statusText":"OK","xhrStatus":"complete"
However, when I give errors.login
, the data is not displayed. Can I count on little help?
angularjs codeigniter-3
I have a problem with displaying data using AngularJS.
So my application is based on AngularJS and CodeIgniter 3.
I've created a validation in CodeIgniter written in the form, everything works.
public function create()
valid_email
On the AngularJS side, I wanted errory to appear.
controllersAdmin.controller('userCreate', function( $scope, $http, $timeout )
$scope.user = ;
$scope.user.role = 'user';
$scope.createUser = function( user )
$http(
method: 'POST', url: 'api/admin/users/create/' ,
data:
user : user,
login : user.login,
email : user.email,
password : user.password,
passconf : user.passconf
).then(function ( errors )
if ( errors )
$scope.errors = errors;
else
$scope.success = true;
$timeout(function()
$scope.success = false;
$scope.user = ;
, 3000 );
,function (error)
console.log('Blad we wczytywaniu danych');
);
);
I created $scope.errors = errors;
When I display it with errors
- data is displayed.
"data":"records":"login":"Pole Imię jest wymagane.","email":"Pole Email jest wymagane.","password":"Pole Hasło jest wymagane.","passconf":"Pole Powtórz hasło jest wymagane.","status":200,"config":"method":"POST","transformRequest":[null],"transformResponse":[null],"jsonpCallbackParam":"callback","url":"api/admin/users/create/","data":"user":"role":"user","headers":"Accept":"application/json, text/plain, */*","Content-Type":"application/json;charset=utf-8","statusText":"OK","xhrStatus":"complete"
However, when I give errors.login
, the data is not displayed. Can I count on little help?
angularjs codeigniter-3
angularjs codeigniter-3
edited Nov 9 at 18:41
asked Nov 9 at 17:16
danko12
497
497
Is the a login property on the errors object? Could you post the what is coming back?
– Mickers
Nov 9 at 17:31
@Mickers errors displays such data "data":"records":"login":"Pole Imię jest wymagane.","email":"Pole Email jest wymagane.","password":"Pole Hasło jest wymagane.","passconf":"Pole Powtórz hasło jest wymagane.","status":200,"config":"method":"POST","transformRequest":[null],"transformResponse":[null],"jsonpCallbackParam":"callback","url":"api/admin/users/create/","data":"user":"role":"user","headers":"Accept":"application/json, text/plain, /","Content-Type":"application/json;charset=utf-8","statusText":"OK","xhrStatus":"complete"
– danko12
Nov 9 at 18:39
add a comment |
Is the a login property on the errors object? Could you post the what is coming back?
– Mickers
Nov 9 at 17:31
@Mickers errors displays such data "data":"records":"login":"Pole Imię jest wymagane.","email":"Pole Email jest wymagane.","password":"Pole Hasło jest wymagane.","passconf":"Pole Powtórz hasło jest wymagane.","status":200,"config":"method":"POST","transformRequest":[null],"transformResponse":[null],"jsonpCallbackParam":"callback","url":"api/admin/users/create/","data":"user":"role":"user","headers":"Accept":"application/json, text/plain, /","Content-Type":"application/json;charset=utf-8","statusText":"OK","xhrStatus":"complete"
– danko12
Nov 9 at 18:39
Is the a login property on the errors object? Could you post the what is coming back?
– Mickers
Nov 9 at 17:31
Is the a login property on the errors object? Could you post the what is coming back?
– Mickers
Nov 9 at 17:31
@Mickers errors displays such data "data":"records":"login":"Pole Imię jest wymagane.","email":"Pole Email jest wymagane.","password":"Pole Hasło jest wymagane.","passconf":"Pole Powtórz hasło jest wymagane.","status":200,"config":"method":"POST","transformRequest":[null],"transformResponse":[null],"jsonpCallbackParam":"callback","url":"api/admin/users/create/","data":"user":"role":"user","headers":"Accept":"application/json, text/plain, /","Content-Type":"application/json;charset=utf-8","statusText":"OK","xhrStatus":"complete"
– danko12
Nov 9 at 18:39
@Mickers errors displays such data "data":"records":"login":"Pole Imię jest wymagane.","email":"Pole Email jest wymagane.","password":"Pole Hasło jest wymagane.","passconf":"Pole Powtórz hasło jest wymagane.","status":200,"config":"method":"POST","transformRequest":[null],"transformResponse":[null],"jsonpCallbackParam":"callback","url":"api/admin/users/create/","data":"user":"role":"user","headers":"Accept":"application/json, text/plain, /","Content-Type":"application/json;charset=utf-8","statusText":"OK","xhrStatus":"complete"
– danko12
Nov 9 at 18:39
add a comment |
1 Answer
1
active
oldest
votes
up vote
2
down vote
accepted
There's your problem. Login is not a property of the errors object but a sub property. It should be errors.data.records.login.
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
accepted
There's your problem. Login is not a property of the errors object but a sub property. It should be errors.data.records.login.
add a comment |
up vote
2
down vote
accepted
There's your problem. Login is not a property of the errors object but a sub property. It should be errors.data.records.login.
add a comment |
up vote
2
down vote
accepted
up vote
2
down vote
accepted
There's your problem. Login is not a property of the errors object but a sub property. It should be errors.data.records.login.
There's your problem. Login is not a property of the errors object but a sub property. It should be errors.data.records.login.
answered Nov 9 at 18:42
Mickers
612817
612817
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53230470%2ferror-displaying-data-scope-angularjs%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Is the a login property on the errors object? Could you post the what is coming back?
– Mickers
Nov 9 at 17:31
@Mickers errors displays such data "data":"records":"login":"Pole Imię jest wymagane.","email":"Pole Email jest wymagane.","password":"Pole Hasło jest wymagane.","passconf":"Pole Powtórz hasło jest wymagane.","status":200,"config":"method":"POST","transformRequest":[null],"transformResponse":[null],"jsonpCallbackParam":"callback","url":"api/admin/users/create/","data":"user":"role":"user","headers":"Accept":"application/json, text/plain, /","Content-Type":"application/json;charset=utf-8","statusText":"OK","xhrStatus":"complete"
– danko12
Nov 9 at 18:39