0

每当我将这行代码粘贴到 rails 控制器中的索引函数时,我都会收到此错误“LocalJumpError (no block given)”:

result = Neo4j.query("START n=node(0) RETURN n")

所以函数看起来像(函数没有目标,它只是为了测试 Neo4j.query 的目的)

def index
  @posts = Post.all

  result = Neo4j.query("START n=node(0) RETURN n")

  respond_to do |format|
    format.html # index.html.erb
    format.json { render json @posts }
  end
end

Neo4j.query 应该只返回其文档中的“可枚举的哈希值”(Neo4j.query 文档

jruby v. 1.7 出现错误 LocalJumpError(未给出块),jruby v. 1.6.2 错误更改为 ArgumentError(未提供块)

4

1 回答 1

0

我发现自己错误地使用了 neo4j.rb 的旧文档。v. 2 的文档位于https://github.com/andreasronge/neo4j/wiki

于 2012-09-10T09:09:55.560 回答