I am using angularjs for load data from webservice. i am getting JSON data from webservices and bind it to html page using ng-repeat in angularjs directive.
After successfully page load when i right click of mouse on page and click on view page source.
It's not showing data getting from web services. I want to all data in view page source for SEO purpose. I find some article regarding SEO changes for angularjs website but it didn't help me to solve my problem.
Code snippets
<div ng-app="mainApp">
<div data-listing>
</div>
</div>
I am binding data from webservice in above div using angularjs directive. But in page soruce only above html is displaying.
Can you please suggest me the changes to display dynamic data in view page source.