本文整理汇总了Python中tiddlyweb.model.tiddler.Tiddler.fields[u"left-hand"]方法的典型用法代码示例。如果您正苦于以下问题:Python Tiddler.fields[u"left-hand"]方法的具体用法?Python Tiddler.fields[u"left-hand"]怎么用?Python Tiddler.fields[u"left-hand"]使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类tiddlyweb.model.tiddler.Tiddler
的用法示例。
在下文中一共展示了Tiddler.fields[u"left-hand"]方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_search_follow_syntax
# 需要导入模块: from tiddlyweb.model.tiddler import Tiddler [as 别名]
# 或者: from tiddlyweb.model.tiddler.Tiddler import fields[u"left-hand"] [as 别名]
def test_search_follow_syntax():
QUERY = u"ftitle:GettingStarted (bag:cdent_public OR bag:fnd_public)"
store.put(Bag("fnd_public"))
store.put(Bag("cdent_public"))
tiddler = Tiddler("GettingStarted", "fnd_public")
tiddler.text = u"fnd starts"
tiddler.fields[u"house"] = u"treehouse"
tiddler.fields[u"car"] = u"porsche"
store.put(tiddler)
tiddler = Tiddler("GettingStarted", "cdent_public")
tiddler.text = u"cdent starts"
tiddler.fields[u"left-hand"] = u"well dirty"
store.put(tiddler)
tiddler = Tiddler("other", "cdent_public")
tiddler.text = u"cdent starts"
store.put(tiddler)
tiddlers = list(store.search(u"starts"))
assert len(tiddlers) == 3
tiddlers = list(store.search(QUERY))
assert len(tiddlers) == 2
tiddlers = list(store.search(u"cdent starts"))
assert len(tiddlers) == 2
tiddlers = list(store.search(u"fnd starts"))
assert len(tiddlers) == 1
tiddler = list(store.search(u'left-hand:"well dirty"'))
assert len(tiddlers) == 1