通过给它们空值来取消设置 Facebook Open Graph 标签?
Unsetting Facebook Open Graph tags by giving them empty values?
我正在考虑使用 Facebook 的 Open Graph,但在某些情况下我需要取消设置属性。由于复杂的原因,删除元元素可能是不可能的,但改变它可能是。
是否认为有效:
<meta property="og:image" content="https://example.com/image.jpg">
只需执行以下操作即可重置:
<meta property="og:image" content="">
...或者这被认为是无效和错误的形式?
根据the specification,一个URL是:
A sequence of Unicode characters that identify an Internet resource. All valid URLs that utilize the http:// or https:// protocols
空字符串无效。
但是它不会破坏任何东西。爬虫将看到元标记,然后尝试显示空内容。
我正在考虑使用 Facebook 的 Open Graph,但在某些情况下我需要取消设置属性。由于复杂的原因,删除元元素可能是不可能的,但改变它可能是。
是否认为有效:
<meta property="og:image" content="https://example.com/image.jpg">
只需执行以下操作即可重置:
<meta property="og:image" content="">
...或者这被认为是无效和错误的形式?
根据the specification,一个URL是:
A sequence of Unicode characters that identify an Internet resource. All valid URLs that utilize the http:// or https:// protocols
空字符串无效。
但是它不会破坏任何东西。爬虫将看到元标记,然后尝试显示空内容。