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

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

转载于:https://www.cnblogs.com/rohens-hbg/p/7772756.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值