摘要:
read_only 表明该字段仅用于序列化输出,默认False
write_only 表明该字段仅用于反序列化输入,默认False
required 表明该字段在反序列化时必须输入,默认True
default 反序列化时使用的默认值
allow_null 表明该字段是否允许传入None,默认False
validators 该字段使用的验证器
error_messages 包含错误编号与错误信息的字典
label 用于HTML展示API页面时,显示的字段名称
help_text 用于HTML展示API页面时,显示的字段帮助提示信息 阅读全文
摘要:
* git init (添加文件);
* git status (查看文件状态);
* git diff (查看修改内容);
* git rm (删除文件);
* git add (把文件保存在暂存区);
* git commit -m (提交到版本库,必须先add);
* git checkout -- file (丢掉工作区的修改);
* git reset --hard commit_id (回退暂存区文件); 阅读全文
摘要:
find_element_by_xpath():通过xpath查找
find_element_by_class_name():通过class属性查找
find_element_by_css_selector():通过css选择器查找
find_element_by_id():通过id查找
find_element_by_name():通过name属性进行查找
find_element_by_partial_link_text():通过链接文本的部分匹配查找
find_element_by_tag_name():通过标签名查找 阅读全文
摘要:
阅读全文
摘要:
* v-bind:可以简写为: 用于绑定dom属性
* v-on: 可以简写@ 表示事件监听
* v-for:循环
* v-if /v-elif /else:判断三组件
* v-model:vue双向绑定
* v-html: 用html方式显示
* 计算属性:computed{{}} 支持写复杂的表达式逻辑 阅读全文