当前位置: 首页>>代码示例>>Python>>正文


Python Selection.tree_settings[int(option_no)]方法代码示例

本文整理汇总了Python中common.selection.Selection.tree_settings[int(option_no)]方法的典型用法代码示例。如果您正苦于以下问题:Python Selection.tree_settings[int(option_no)]方法的具体用法?Python Selection.tree_settings[int(option_no)]怎么用?Python Selection.tree_settings[int(option_no)]使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在common.selection.Selection的用法示例。


在下文中一共展示了Selection.tree_settings[int(option_no)]方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: SetTreeSelection

# 需要导入模块: from common.selection import Selection [as 别名]
# 或者: from common.selection.Selection import tree_settings[int(option_no)] [as 别名]
def SetTreeSelection(request):
    """Adds all alignable segments to the selection"""
    option_no = request.GET['option_no']
    option_id = request.GET['option_id']
    # get simple selection from session
    simple_selection = request.session.get('selection', False)
    # create full selection and import simple selection (if it exists)
    selection = Selection()
    if simple_selection:
        selection.importer(simple_selection)
    selection.tree_settings[int(option_no)]=option_id
    simple_selection = selection.exporter()
    # add simple selection to session
    request.session['selection'] = simple_selection
    return render(request, 'common/tree_options.html', selection.dict('tree_settings'))
开发者ID:AnnaTsolakou,项目名称:protwis,代码行数:17,代码来源:views.py


注:本文中的common.selection.Selection.tree_settings[int(option_no)]方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。