我正在mat-dialog中使用mat-select。我通过单击打开mat-select-options。现在,如果我尝试通过单击mat-dialog中的任意位置来关闭mat-select-options,则它不会关闭。
答案 0 :(得分:0)
我通过在选项中添加关闭按钮来解决此问题。
class Main(object):
@cherrypy.expose()
def index(self):
return open('views/home/index.html', 'rb').read().decode('utf-8')
@cherrypy.expose()
def secondsite(self):
return open('views/home/secondsite.html', 'rb').read().decode('utf-8')
conf = {
'/': {
'tools.sessions.on': True,
'tools.staticdir.root': os.path.abspath(os.getcwd()),
},
'/static': {
'tools.staticdir.on': True,
'tools.staticdir.dir': './public'
}
}