How to update $scope variables through a function
I'm currently working on grabbing some data from an endpoint and then updating a variable called $scope.response
. I'm not quite sure how to update this variable and render it on screen.
So what happens in the code below:
I get the query string from an iframe's src
attribute, and then post it to my endpoint, where I get a particular response called data
. I'd like to update $scope.response
with this object, and then render it on the view using response
.
Could someone show me how I could do this?
app.controller('MainCtrl', function($scope)
$scope.response;
API = ;
API.endpoint = 'https://some/endpoint/';
function getParameterByName(name, url) #
function doAjax(callback)
var q = getParameterByName('QUERY');
jQuery.ajax(
url: API.endpoint + "script.php",
method: "POST",
data: q: q ,
dataType: "json",
success: function (data)
callback(data);
$scope.response = data;
);
);
javascript angularjs asynchronous
add a comment |
I'm currently working on grabbing some data from an endpoint and then updating a variable called $scope.response
. I'm not quite sure how to update this variable and render it on screen.
So what happens in the code below:
I get the query string from an iframe's src
attribute, and then post it to my endpoint, where I get a particular response called data
. I'd like to update $scope.response
with this object, and then render it on the view using response
.
Could someone show me how I could do this?
app.controller('MainCtrl', function($scope)
$scope.response;
API = ;
API.endpoint = 'https://some/endpoint/';
function getParameterByName(name, url) #
function doAjax(callback)
var q = getParameterByName('QUERY');
jQuery.ajax(
url: API.endpoint + "script.php",
method: "POST",
data: q: q ,
dataType: "json",
success: function (data)
callback(data);
$scope.response = data;
);
);
javascript angularjs asynchronous
2
Don't use jQuery ajax. Use angular $http so you don't have to tell angular to update view. Note settings are a bit different to send form encoded data which is $.ajax default whereas $http default is to send json
– charlietfl
Nov 15 '18 at 2:41
To use jQuery ajax you need to call$scope.apply()
after scope changes. Typically don't need jQuery in angular app though
– charlietfl
Nov 15 '18 at 2:45
add a comment |
I'm currently working on grabbing some data from an endpoint and then updating a variable called $scope.response
. I'm not quite sure how to update this variable and render it on screen.
So what happens in the code below:
I get the query string from an iframe's src
attribute, and then post it to my endpoint, where I get a particular response called data
. I'd like to update $scope.response
with this object, and then render it on the view using response
.
Could someone show me how I could do this?
app.controller('MainCtrl', function($scope)
$scope.response;
API = ;
API.endpoint = 'https://some/endpoint/';
function getParameterByName(name, url) #
function doAjax(callback)
var q = getParameterByName('QUERY');
jQuery.ajax(
url: API.endpoint + "script.php",
method: "POST",
data: q: q ,
dataType: "json",
success: function (data)
callback(data);
$scope.response = data;
);
);
javascript angularjs asynchronous
I'm currently working on grabbing some data from an endpoint and then updating a variable called $scope.response
. I'm not quite sure how to update this variable and render it on screen.
So what happens in the code below:
I get the query string from an iframe's src
attribute, and then post it to my endpoint, where I get a particular response called data
. I'd like to update $scope.response
with this object, and then render it on the view using response
.
Could someone show me how I could do this?
app.controller('MainCtrl', function($scope)
$scope.response;
API = ;
API.endpoint = 'https://some/endpoint/';
function getParameterByName(name, url) #
function doAjax(callback)
var q = getParameterByName('QUERY');
jQuery.ajax(
url: API.endpoint + "script.php",
method: "POST",
data: q: q ,
dataType: "json",
success: function (data)
callback(data);
$scope.response = data;
);
);
javascript angularjs asynchronous
javascript angularjs asynchronous
asked Nov 15 '18 at 2:34
Jerome PapalieJerome Papalie
295
295
2
Don't use jQuery ajax. Use angular $http so you don't have to tell angular to update view. Note settings are a bit different to send form encoded data which is $.ajax default whereas $http default is to send json
– charlietfl
Nov 15 '18 at 2:41
To use jQuery ajax you need to call$scope.apply()
after scope changes. Typically don't need jQuery in angular app though
– charlietfl
Nov 15 '18 at 2:45
add a comment |
2
Don't use jQuery ajax. Use angular $http so you don't have to tell angular to update view. Note settings are a bit different to send form encoded data which is $.ajax default whereas $http default is to send json
– charlietfl
Nov 15 '18 at 2:41
To use jQuery ajax you need to call$scope.apply()
after scope changes. Typically don't need jQuery in angular app though
– charlietfl
Nov 15 '18 at 2:45
2
2
Don't use jQuery ajax. Use angular $http so you don't have to tell angular to update view. Note settings are a bit different to send form encoded data which is $.ajax default whereas $http default is to send json
– charlietfl
Nov 15 '18 at 2:41
Don't use jQuery ajax. Use angular $http so you don't have to tell angular to update view. Note settings are a bit different to send form encoded data which is $.ajax default whereas $http default is to send json
– charlietfl
Nov 15 '18 at 2:41
To use jQuery ajax you need to call
$scope.apply()
after scope changes. Typically don't need jQuery in angular app though– charlietfl
Nov 15 '18 at 2:45
To use jQuery ajax you need to call
$scope.apply()
after scope changes. Typically don't need jQuery in angular app though– charlietfl
Nov 15 '18 at 2:45
add a comment |
2 Answers
2
active
oldest
votes
Angular doesn't magically know when a property on an object changes, it would have to keep re-checking all objects all the time to catch such changes. Angular just makes it look like it notices such changes whenever you use any Angular services or events, since those trigger a digest cycle. At the end of a digest cycle, Angular checks objects it knows about for changes and propagates those changes (e.g. updates views etc.).
When you use jQuery, that's "outside" of what Angular knows about. Primarily you should not use jQuery, but Angular's $http
service to make any network requests, since Angular will then properly cycle its digestive system.*
* Pun totally intended
If you have to use some non-Angular system (and again, you really don't have to here, at all), then you need to trigger another digest cycle. The best way to do that is with the $timeout
service:
app.controller('MainCtrl', function($scope, $timeout)
...
success: function (data)
callback(data);
$timeout(() => $scope.response = data);
...
);
add a comment |
Why do you use jQuery in Angular?. If you choose Angular, you should be you $http in angular. Remove function doAjax and replace it to $http. You can read doc in here https://docs.angularjs.org/api/ng/service/$http
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
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%2f53311608%2fhow-to-update-scope-variables-through-a-function%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Angular doesn't magically know when a property on an object changes, it would have to keep re-checking all objects all the time to catch such changes. Angular just makes it look like it notices such changes whenever you use any Angular services or events, since those trigger a digest cycle. At the end of a digest cycle, Angular checks objects it knows about for changes and propagates those changes (e.g. updates views etc.).
When you use jQuery, that's "outside" of what Angular knows about. Primarily you should not use jQuery, but Angular's $http
service to make any network requests, since Angular will then properly cycle its digestive system.*
* Pun totally intended
If you have to use some non-Angular system (and again, you really don't have to here, at all), then you need to trigger another digest cycle. The best way to do that is with the $timeout
service:
app.controller('MainCtrl', function($scope, $timeout)
...
success: function (data)
callback(data);
$timeout(() => $scope.response = data);
...
);
add a comment |
Angular doesn't magically know when a property on an object changes, it would have to keep re-checking all objects all the time to catch such changes. Angular just makes it look like it notices such changes whenever you use any Angular services or events, since those trigger a digest cycle. At the end of a digest cycle, Angular checks objects it knows about for changes and propagates those changes (e.g. updates views etc.).
When you use jQuery, that's "outside" of what Angular knows about. Primarily you should not use jQuery, but Angular's $http
service to make any network requests, since Angular will then properly cycle its digestive system.*
* Pun totally intended
If you have to use some non-Angular system (and again, you really don't have to here, at all), then you need to trigger another digest cycle. The best way to do that is with the $timeout
service:
app.controller('MainCtrl', function($scope, $timeout)
...
success: function (data)
callback(data);
$timeout(() => $scope.response = data);
...
);
add a comment |
Angular doesn't magically know when a property on an object changes, it would have to keep re-checking all objects all the time to catch such changes. Angular just makes it look like it notices such changes whenever you use any Angular services or events, since those trigger a digest cycle. At the end of a digest cycle, Angular checks objects it knows about for changes and propagates those changes (e.g. updates views etc.).
When you use jQuery, that's "outside" of what Angular knows about. Primarily you should not use jQuery, but Angular's $http
service to make any network requests, since Angular will then properly cycle its digestive system.*
* Pun totally intended
If you have to use some non-Angular system (and again, you really don't have to here, at all), then you need to trigger another digest cycle. The best way to do that is with the $timeout
service:
app.controller('MainCtrl', function($scope, $timeout)
...
success: function (data)
callback(data);
$timeout(() => $scope.response = data);
...
);
Angular doesn't magically know when a property on an object changes, it would have to keep re-checking all objects all the time to catch such changes. Angular just makes it look like it notices such changes whenever you use any Angular services or events, since those trigger a digest cycle. At the end of a digest cycle, Angular checks objects it knows about for changes and propagates those changes (e.g. updates views etc.).
When you use jQuery, that's "outside" of what Angular knows about. Primarily you should not use jQuery, but Angular's $http
service to make any network requests, since Angular will then properly cycle its digestive system.*
* Pun totally intended
If you have to use some non-Angular system (and again, you really don't have to here, at all), then you need to trigger another digest cycle. The best way to do that is with the $timeout
service:
app.controller('MainCtrl', function($scope, $timeout)
...
success: function (data)
callback(data);
$timeout(() => $scope.response = data);
...
);
answered Nov 15 '18 at 2:51
deceze♦deceze
397k62540696
397k62540696
add a comment |
add a comment |
Why do you use jQuery in Angular?. If you choose Angular, you should be you $http in angular. Remove function doAjax and replace it to $http. You can read doc in here https://docs.angularjs.org/api/ng/service/$http
add a comment |
Why do you use jQuery in Angular?. If you choose Angular, you should be you $http in angular. Remove function doAjax and replace it to $http. You can read doc in here https://docs.angularjs.org/api/ng/service/$http
add a comment |
Why do you use jQuery in Angular?. If you choose Angular, you should be you $http in angular. Remove function doAjax and replace it to $http. You can read doc in here https://docs.angularjs.org/api/ng/service/$http
Why do you use jQuery in Angular?. If you choose Angular, you should be you $http in angular. Remove function doAjax and replace it to $http. You can read doc in here https://docs.angularjs.org/api/ng/service/$http
answered Nov 15 '18 at 3:23
phuchoangmaiphuchoangmai
76111
76111
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
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%2f53311608%2fhow-to-update-scope-variables-through-a-function%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
2
Don't use jQuery ajax. Use angular $http so you don't have to tell angular to update view. Note settings are a bit different to send form encoded data which is $.ajax default whereas $http default is to send json
– charlietfl
Nov 15 '18 at 2:41
To use jQuery ajax you need to call
$scope.apply()
after scope changes. Typically don't need jQuery in angular app though– charlietfl
Nov 15 '18 at 2:45