• openwrt页面显示问题修改


    页面显示错误如下:

    在不应该的位置显示了这个,查看配置文件:

    config igmpproxy
            option quickleave '1'

    config phyint 
            option network 'wan'
            option direction 'upstream'
            list altnet '10.10.10.10'

    config phyint 
            option network 'net'
            option direction 'downstream'

    以及代码部分:

    s = m:section(TypedSection, "phyint", translate("upstream setting"))
    s.addremove = false
    s.anonymous = true

    发现是由于代码部分识别时,使用了类型识别,而配置文件中存在2个相同类型。因此,更改代码和配置文件如下:

    config igmpproxy
            option quickleave '1'

    config phyint 'upstream'
            option network 'wan'
            option direction 'upstream'
            list altnet '10.10.10.10'

    config phyint 'downstream'
            option network 'net'
            option direction 'downstream'

    代码部分修改如下:

    s = m:section(NamedSection, "upstream", phyint, translate("upstream setting"))
    s.addremove = false
    s.anonymous = true

    修改后,界面显示正常,如下:

  • 相关阅读:
    UVA 12545 Bits Equalizer
    UVA 1610 Party Games
    UVA 1149 Bin Packing
    UVA 1607 Gates
    UVA 12627 Erratic Expansion
    UVA10562-Undraw the Trees(递归)
    UVA10129-Play on Words(欧拉路径)
    UVA816-Abbott's Revenge(搜索进阶)
    UVA1103-Ancient Messages(脑洞+dfs)
    UVA839-Not so Mobile
  • 原文地址:https://www.cnblogs.com/rohens-hbg/p/7772756.html
Copyright © 2020-2023  润新知