我的index.html
中有以下几行:
<meta property="og:type" content="website" />
<!-- <meta property="og:url" content="http://urlsite.com/" /> -->
<meta name="fbDescription" property="og:description" content="description">
<meta name="fbJobTitle" property="og:title" content="jobtitle">
<meta name="fbImage" property="og:image" content="http://logo.png">
<meta property="og:site_name" content="spreadtrend" />
我有一种方法可以更新元标记,然后使用共享对话框在facebook
上共享。
this.meta.updateTag({ name: 'fbDescription', content: this.jobDescription });
this.meta.updateTag({ name: 'fbJobTitle', content: this.jobTitle });
this.meta.updateTag({ name: 'fbImage', content: this.logo });
当我检查时,我拥有更新的内容,但是当我单击share
时,内容保持不变。 facebook debugger
还会显示旧信息。
我该怎么办?