# Как установить голову og: в Nuxt - PullRequest
0 голосов
/ 18 мая 2019

У меня проблема, связанная с головой на nuxt js.У меня есть новостной сайт, когда я захожу на страницу с подробной информацией, я пишу код, показанный ниже.

head() {
            return {
                title: 'Rumaholi.com - ' + this.news.title,
                meta: [
                    { hid: 'description', name: 'description', content: this.news.title },
                    { hid: 'og:title', property: 'og:title', content: this.news.title },
                    { hid: 'og:url', property: 'og:url', content: 'http://www.rumaholi.com/' + this.slug },
                    { hid: 'og:image', property: 'og:image', content: this.news.image },
                    { hid: 'og:description', property: 'og:description', content: this.news.title },
                    { property: 'og:type', content: 'article' },
                ],
            }
        },

, когда я тестирую на Facebook, очевидно, моя голова использует индекс

https://developers.facebook.com/tools/debug/sharing/?q=http%3A%2F%2Fwww.rumaholi.com%2Fbuilder-as-bangun-motor-berlapis-emas-begini-penampakannya

head: {
    title: 'Rumaholi.com - Home',
    meta: [
      { charset: 'utf-8' },
      { name: 'viewport', content: 'width=device-width, initial-scale=1' },
      { name: 'keywords', content: 'Oli, Oli Motor, Oli Mobil, Oil, Car Oil, Automotive, News, News Automotive, Berita, Berita Automotive, Berita Otomotif'},
      { hid: 'description', name: 'description', content: 'Rumaholi.com - Berita  Automotive | Berita Automotive National | Berita Automotive International' }
    ],
    link: [
      { rel: 'icon', type: 'image/x-icon', href: '/icon_LnO_icon.ico' },
      {
        rel: 'stylesheet',
        href:
          'https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons'
      }
    ]
  },

, пожалуйста, помогите решить проблему

...