我无法使用撇号博客模块显示单个博客文章页面。我必须遗漏某些东西或遗忘某些东西?
以下是复制问题的方法(使用以下代码中的代码:https://github.com/newdesignideas/sample-veebidisainer)
我的app.js如下:
var apos = require('apostrophe')({
shortName: 'veebidisainer',
title: 'veebidisainer',
// declaring the blog bundle
bundles: [ 'apostrophe-blog' ],
// These are the modules we want to bring into the project.
modules: {
// This configures the apostrophe-users module to add an admin-level
// group by default
'apostrophe-users': {
groups: [
{
title: 'guest',
permissions: [ ]
},
{
title: 'admin',
permissions: [ 'admin' ]
}
]
},
// This configures the apostrophe-assets module to push a 'site.less'
// stylesheet by default
'apostrophe-assets': {
stylesheets: [
{
name: 'site'
}
],
scripts: [
{
name: 'mo',
}
]
},
// Add your modules and their respective configuration here!
'apostrophe-blog': {
widget: true
},
'apostrophe-blog-pages': {},
'apostrophe-blog-widgets': {},
'apostrophe-pages': {
// We must list 'apostrophe-blog-pages'
types: [
{ name: 'apostrophe-blog-pages',
label: 'Blog'
},
{
name: 'default',
label: 'Default'
},
{
name: 'home',
label: 'Home'
}
]
},
'b2b-main-menu': {},
'b2b-main-menu-widgets': {
extend: 'apostrophe-pieces-widgets'
},
}
});
我检查了MongoDB数据库,并正确发布了示例测试文章。也许我错过了一个视图文件?由于几乎没有文档 - 我尝试在适当的地方创建视图文件。此屏幕截图显示了当前的文件结构:
Click here to view the sceenshot showing the lib/module file structure
答案 0 :(得分:0)
博客帖子的网址与博客页面网址相关。因此,如果您在/blog
有一个博客页面,并且有一个标题为test
的测试帖子,那么您应该可以在/blog/test
看到它。