KeystoneJS无法更新帖子

时间:2016-05-10 15:05:12

标签: javascript reactjs babel keystonejs

  

更新似乎问题是我无法更新/编辑我的帖子。每次我创建一个新帖子,然后输入死循环。请帮帮我T-T

最近我开始使用keystoneJS作为我的CMS 一切顺利,但这个帖子问题。
我发现如果我通过yo keystone安装keystone-demo(使用由Yeoman制作的KeystoneJS生成器),那么发布帖子可以工作,但如果我手动安装keystone,问题就来了......
在Google Inspect Console中,存在错误 - "TypeError: undefined is not an object (evaluating 'refList.expandColumns')"

我猜这是关键版本的问题。 这是我的package.json文件

{
  "name": "keystone-demo",
  "version": "1.0.1",
  "private": true,
  "repository": {
    "type": "git",
    "url": "https://github.com/JedWatson/keystone-demo.git"
  },
  "dependencies": {
    "keystone": "https://github.com/keystonejs/keystone.git",
    "async": "^1.5.0",
    "lodash": "^3.10.1",
    "csv": "^0.4.6",
    "gulp": "^3.9.1",
    "gulp-less": "^3.1.0",
    "gulp-shell": "^0.5.2",
    "gulp-watch": "^4.3.5",
    "pug": "^2.0.0-alpha6"
  },
  "scripts": {
    "start": "node keystone.js"
  }
}

这是package.json文件可正常工作的版本

{
  "name": "keystone",
  "version": "0.0.0",
  "private": true,
  "dependencies": {
    "keystone": "^0.3.16",
    "async": "^1.5.0",
    "underscore": "^1.8.3",
    "node-sass": "^3.3.2",
    "node-sass-middleware": "^0.9.7", 
    "dotenv": "^1.1.0"
  },
  "devDependencies": {
    "gulp": "^3.7.0",
    "gulp-jshint": "^1.9.0",
    "jshint-stylish": "^0.1.3",
    "gulp-shell": "^0.5.0",
    "gulp-watch": "^4.3.5",
    "gulp-sass": "^2.0.4"

  },
  "engines": {
    "node": ">=0.10.22",
    "npm": ">=1.3.14"
  },
  "scripts": {
    "start": "node keystone.js"
  },
  "main": "keystone.js"
}

1 个答案:

答案 0 :(得分:0)

您正在从github加载最新的keystone版本,这并不总是稳定的。这可能是您看到错误的原因。

我建议使用发布到npm的最新版本(编写本文时为0.3.22)。

将依赖项中的第一行更新为此,它将起作用:

"keystone": "^0.3.22",

要将keystone添加到新项目,您还可以键入npm install --save keystone