Angular using Microdata

Does Microdata work with dynamic Angular elements ng-repeat?

Can i use it like:

<div itemscope itemtype="http://schema.org/Product" ng-repeat="item in items">
</div>
+4
source share
2 answers

I found a schema validation mechanism that actually displays angular expressions for my site:

...
datePublished  {{lvl_project['year']}}
name          "{{lvl_project['title']}}"
keywords       {{lvl_project['tools'].join(',')}}
...

In addition, it does NOT display all ng-repeatnon-generated elements.

This seems to me to be a strong sign that the google bot did not see the angular-generated elements and their values, but there may be more problems that I do not know.

0
source

, ... ( , ).

-1

Source: https://habr.com/ru/post/1606408/


All Articles