本帖最后由 气气气气全 于 2018-11-29 13:37 编辑
已解决:原来我下的文件有问题,不是原本的文件了,我去开发者那里下了源文件现在好了,谢谢各位
pages: [
{
title: 'Main page',
bg: 'images/bg3.jpg', //页面的背景图
icon: 'mdi-home-outline', // home icon
head: 'head.html', // time
groups: [
{
title: '传感器',
width: 0,
height: 0,
items: [
{
position: [0, 0],
type: TYPES.SENSOR_ICON,
title: '后门',
id: 'binary_sensor._4',
states: {
on: "已开门",
off: "已关门"
},
icons: {
on: 'mdi-door-open',
off: 'mdi-door'
}
}
]
},
{
title: '灯光',
width: 1,
height: 0,
items: [
{
position: [0, 0],
type: TYPES.LIGHT,
title: '卧室灯',
id: 'light._3',
state: false,
lstates: {
on: "灯已开",
off: "灯已关"
},
icons: {
on: 'mid-lightbulb-on',
off: 'mid-lightbulb'
}
}
]
},
]
}
],
这是pages的代码,在灯光没有加进去之前是不报错的,像这样
然后加了那段灯光之后就这样了
想问下我到底哪里配错了?然后我跟着https://github.com/resoai/TileBoard这位开发者的文档配置的也会报错是怎么回事啊?
求大佬指导
|