동일한 속성 (이름, 위치, 설명 등)을 가진 여러 Schema.org 이벤트가 포함 된 페이지가 있습니다. 나는 이런 식으로 뭔가를 수행하여 위치를 처리하는 방법을 알아 냈어요 :Microdata에서 여러 Schema.org 이벤트의 설명을 어떻게 참조합니까?
<div itemscope itemtype="http://schema.org/Event">
…
<meta itemprop="location" itemscope itemtype="http://schema.org/Place" itemref="venue-place" />
</div>
<span id="venue-place">
<a href="http://www.example.com/" itemprop="url">
<span itemprop="name">Crystal Ballroom</span>
</a>
<span itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
<span itemprop="streetAddress">1332 W Burnside St.</span>
<span itemprop="addressLocality">Portland</span>,
<span itemprop="addressRegion">OR</span>
<span itemprop="postalCode">97209</span>
</span>
</span>
그러나, 나는이 이벤트의 설명은이 작업을 수행하는 방법을 알아낼 수 없습니다. 내가 잘못 뭐하는 거지
<div itemscope itemtype="http://schema.org/Event">
…
<meta itemprop="description" itemscope itemref="event-summary" />
</div>
<div id="event-summary">
This is the description text.
</div>
: 나는 빈 설명 구글의 구조화 된 데이터 테스트 도구에 이벤트에 표시하게 이런 일을 했어?
방금 내가이 물건에 대해 가지고 있었던 오해의 전체를 고쳤습니다. 고맙습니다! –