是否应将输入为description
(Schema.org属性)的文本设置为HTML页面的meta
-description
?
请考虑以下内容:
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "JobPosting",
"baseSalary": "100000",
"jobBenefits": "Medical, Life, Dental",
"datePosted": "2011-10-31",
"description": "Description: ABC Company Inc. seeks a full-time mid-level software engineer to develop in-house tools.",
"educationRequirements": "Bachelor's Degree in Computer Science, Information Systems or related fields of study.",
"employmentType": "Full-time",
"experienceRequirements": "Minumum 3 years experience as a software engineer",
"incentiveCompensation": "Performance-based annual bonus plan, project-completion bonuses",
"industry": "Computer Software",
"jobLocation": {
"@type": "Place",
"address": {
"@type": "PostalAddress",
"addressLocality": "Kirkland",
"addressRegion": "WA"
}
},
"occupationalCategory": "15-1132.00 Software Developers, Application",
"qualifications": "Ability to work in a team environment with members of varying skill levels. Highly motivated. Learns quickly.",
"responsibilities": "Design and write specifications for tools for in-house customers Build tools according to specifications",
"salaryCurrency": "USD",
"skills": "Web application development using Java/J2EE Web application development using Python or familiarity with dynamic programming languages",
"specialCommitments": "VeteranCommit",
"title": "Software Engineer",
"workHours": "40 hours per week"
}
</script>
是否应将输入的文本作为属性description
的内容(“ ABC Company Inc.寻求专职的中级软件工程师来开发内部工具”。)设置为HTML页面meta
部分中的description
-head
标签,如下所示:
<meta name="description" content="ABC Company Inc. seeks a full-time mid-level software engineer to develop in-house tools.">
以同样的方式,将Schema.org属性title
的内容设置为HTML页面的title
元素(在head
部分中)如下所示:
<title>Software Engineer</title>