0

我正在使用 Next.js (SSG) 和 Storyblok (Headless CMS) 开发 JAMstack 网站,并使用 Storyblok Content Delivery API 从 Storyblok 获取内容。

我创建了具有 Storyblok 配置和 Bridge 功能的 Storyblok 服务。

StoryblokService.js

import StoryblokClient from 'storyblok-js-client'
class StoryblokService {
  constructor() {
    this.devMode = false // Always loads draft
    this.token = '#########'
    this.client = new StoryblokClient({
      accessToken: this.token,
      cache: {
        clear: 'auto',
        type: 'memory'
      }
    })
    this.query = {}
  }
  getCacheVersion() {
    return this.client.cacheVersion
  }
  get(slug, params) {
    params = params || {}
    if (this.getQuery('_storyblok') || this.devMode || (typeof window !== 'undefined' && window.storyblok)) {
      params.version = 'draft'
    }
    if (typeof window !== 'undefined' && typeof window.StoryblokCacheVersion !== 'undefined') {
      params.cv = window.StoryblokCacheVersion
    }
    return this.client.get(slug, params)
  }
  initEditor(reactComponent) {
    if (window.storyblok) {
      window.storyblok.init()
      window.storyblok.on(['change', 'published'], () => location.reload(true))
      // this will alter the state and replaces the current story with a current raw story object (no resolved relations or links)
      window.storyblok.on('input', (event) => {
        if (event.story.content._uid === reactComponent.state.story.content._uid) {
          reactComponent.setState({
            story: {
              ...event.story,
              content: window.storyblok.addComments(event.story.content, event.story.id)
            }
          })
        }
      })
    }
  }
  setQuery(query) {
    this.query = query
  }
  getQuery(param) {
    return this.query[param]
  }
  bridge() {
    if (!this.getQuery('_storyblok') && !this.devMode) {
      return ''
    }
    return (<script src={'//app.storyblok.com/f/storyblok-latest.js?t=' + this.token}></script>)
  }
}
const storyblokInstance = new StoryblokService()
export default storyblokInstance

我正在调用桥接函数并在从 app.js 调用的 layout.js 中获取布局内容。

应用程序.js

import React, { useState } from 'react';
import StoryblokService from '../utils/storyblok-service';

function MyApp({ Component, pageProps, layoutContent }) {
  return (
        <Layout navColor={appendHeaderColor} title={`Test title`} description={`Test description`} content={layoutContent}>
  );
}

MyApp.getInitialProps = async (query) => {
  StoryblokService.setQuery(query)
  const res = await StoryblokService.get('cdn/stories/layout')
  const layoutContent = res.data.story.content
  return {
    layoutContent
  }
}
export default MyApp;

Storyblok 桥在 layout.js 中被这样调用

布局.js


{StoryblokService.bridge()}

问题陈述

使用 Storyblok 进行实时内容更新,即如果我更改 Storyblok 中的一些内容并发布它,那么当我重新加载页面时,Next.js Web 应用程序中的内容也会更新,在开发/本地环境中运行良好,但是生产环境中的相同操作或将 Next.js 代码发布到 Vercel 不起作用。

似乎配置错​​误,或者可能与 Storyblok webhook 或工作流有关。

任何帮助,将不胜感激。提前致谢!

4

0 回答 0