我正在尝试使用这些文档在 Neo4j python-embedded 中制作图表:http: //docs.neo4j.org/chunked/snapshot/python-embedded-reference-core.html “允许的属性值包括字符串、数字、布尔值,以及这些原语的数组”。所以,我正在尝试构建一个字符串列表,然后附加该列表。
from neo4j import GraphDatabase
db = GraphDatabase('/home/username/Neo4j/')
with db.transaction:
testNode = db.node()
testNode['stringList'] = ["one","two"]
string_list_edit = testNode['stringList']
string_list_edit.append("three")
给我这个错误:
AttributeError: 'java.lang.String[]' object has no attribute 'append'
这是怎么做到的?