摘要:
Vue中子组件调用父组件的方法,这里有三种方法提供参考 父组件 <template> <div> <child></child> </div> </template> <script> import child from '~/components/dam/child'; export defaul 阅读全文
随笔档案-2020年08月
python自定义异常类
2020-08-06 11:12 by _天枢, 483 阅读, 收藏, 编辑
摘要:
class BaseException(Exception): '''异常类基类''' pass class WX_Exception(BaseException): '''自定义的WX异常类''' def __init__(self, msg): self.msg = msg def __str_ 阅读全文