I'm encountering some difficulties while attempting to extract data from Behance.net. There are two specific issues that I am facing in retrieving the necessary information.
The first challenge arises when trying to retrieve the project description. Although I can access the information by using ng-bind="project.description"
, the formatting, such as paragraph breaks, is missing. Therefore, my current goal is to obtain the formatted description.
Below is the HTML code snippet:
<div class="col-sm-6">
<h3 ng-bind="project.name"></h3>
<p ng-bind="project.modules.text"></p>
<h4><i class="fa fa-tags success"></i> Tags</h4>
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<div class="pull-left label label-info" style="margin-right:5px; margin-bottom:10px;"
ng-repeat="tag in project.tags" ng-bind="tag"></div>
</div>
</div>
Displayed below is the JSON data provided by Behance:
angular.callbacks._0({
"project": {
....
"modules": [{
"id": 111549713,
"type": "text",
"text": "This is the description of the project I am attempting to acquire"
The second issue seems to mirror the first one, but here it is for reference.
<p style="margin-top:10px;" ng-bind="user.sections.About"></p>
As shown in the JSON file below:
angular.callbacks._1({
"user": {
"sections": {
"About Me": Description utilized on the Behance platform that I am striving to showcase
I'm able to retrieve all kinds of information except for these particular instances. Any assistance would be highly appreciated.