我正在尝试查找其中包含多个下划线的所有行,这些行由一些字符分隔,例如:struct Test {
func isOk () -> Bool {
return true
}
init() {
mapping[1] = isOk
}
var mapping = [Int: () -> Bool]()
func test() -> Bool {
// you need to think about situations where mapping[1] returns nil
// and deal with it in a more proper way than force unwrapping
return mapping[1]!()
}
}
我尝试了() -> Bool
,但这似乎可以归还所有内容。
答案 0 :(得分:1)
您可以使用:
ALLOWED_HOST=['127.0.0.1', 'localhost']
对于包含空格字符和下划线的2个元素的情况:
CommandError: You must set settings.ALLOWED_HOSTS if DEBUG is False.