我正在使用Next.js(SSG)和Storyblok(Headless CMS)开发一个JAMstack网站,并使用Storyblok内容交付API从Storyblok获取内容。
我已经创建了Storyblok服务,它具有Storyblok配置和Bridge功能。
故事包服务.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
我正在调用bridge函数,并获取layout.js中的布局内容,该布局内容是从app.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或工作流有关。
任何帮助将不胜感激。提前感谢!
2条答案
按热度按时间iqjalb3h1#
你添加了预览模式吗?我有同样的问题,因为缺少预览模式。
gc0ot86w2#
您应该检查获取URL是否正确。