撇号博客模块:个人博客帖子404

时间:2017-02-27 08:13:58

标签: apostrophe-cms

我无法使用撇号博客模块显示单个博客文章页面。我必须遗漏某些东西或遗忘某些东西?

以下是复制问题的方法(使用以下代码中的代码:https://github.com/newdesignideas/sample-veebidisainer

  • 使用网址“test”和标题“test”
  • 创建了一篇示例文章或博文
  • 示例博客文章“test”标题显示在localhost:3000 / blog
  • 的主要博客页面中
  • 示例博客帖子在访问网址“localhost:3000 / test”
  • 时出现404错误

我的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

1 个答案:

答案 0 :(得分:0)

博客帖子的网址与博客页面网址相关。因此,如果您在/blog有一个博客页面,并且有一个标题为test的测试帖子,那么您应该可以在/blog/test看到它。