jDrupal
jDrupal copied to clipboard
Edit user fields - Drupal 8
Is it possible to edit user fields via jDrupal? I am working with Cordova and this doesnt seems to work:
jDrupal.userLoad(1).then(function(user) {
alert("value "+user.entity.field_test[0].value);
user.entity.field_test[0].value="987654";
user.save().then(function() {
console.log('Saved ');
});
console.log('Loaded : ' + user.getAccountName());
});
User would be logged in.
Could you provide some more information? What exactly is not working, is is not saving? What's the error that is returned? Is it HTTP or JS?
Also, take a look at this thread: https://github.com/easystreet3/angular-drupal/issues/31