-
Notifications
You must be signed in to change notification settings - Fork 154
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
第四讲课后作业(截至时间4月3日) #33
Comments
补充: 提交格式为 123456789 夏华献 https://xlab2017.yuque.com/staff-kbz9wp/ut3q7i/kf38uhpd6tl3otl0 |
51255903048 廖浩宇 https://twiliness.cloud/ |
Cool~ |
51255903096 丁子晨 https://heroding77.github.io/ |
51255903056 赵泽源 https://zzyzeyuan.github.io/ |
51255903038 刘锦奥 https://jinaoliu.github.io/ |
51255903074 陈宇灵 https://rainforestc.github.io/ |
52265903003 梁青青 https://qqliang.github.io/ |
51255903093 张焕 https://hzhang4433.github.io/ |
51255903097 崔里青 https://givemeanapple99.github.io/ |
52275903002 翁思扬 https://wengsy150943.github.io/ |
51255903005 李泽浩 http://lee_paul.gitee.io/blog_for_xlab |
52265903006 朱君鹏 https://abcdabcd3899.github.io/ |
52265903005 卢官宇 https://itskevin-lgy.github.io/ |
51255903113 刘雨石 https://liuyushiii.github.io/ |
51255903106 朱嘉鹏 https://jasonzhujp.github.io/ |
51255903022 倪舜杰 https://momentni.github.io/ |
51255903073 张布昂 https://zhangbububu.github.io/ |
51255903102 徐豪 https://iclovemiku.github.io/ |
51255903015 翁祯敏 https://tamiflu233.com |
52265903002 潘志诚 https://lroethan.github.io/ |
51255903103 韩正愿 https://hunterhan.github.io/ |
51255903033 庄志豪 https://xwyzsn.github.io/ |
51255903065 唐晓雯 https://tang-small-flower.github.io/ |
51255903111 宋晏如 https://breaddsmall.github.io |
51255903036 仇昊晨 https://hcque.github.io/ |
51255903057 简炜 https://freejww.github.io/Freejw.github.io/ |
51255903055 何泽伟 https://eipsilly.github.io/ |
51255903018 徐金凯 https://jinkaixu.github.io/ |
51255903009 孙印政 https://yinzheng-sun.github.io/ |
51255903099 郑学森 https://bensonzxs.github.io/bolg/ |
51255903107 钱堃 https://qkgoalkeeper.github.io/ |
51255903081 韩宇捷 https://eijuynah.github.io/ |
51255903039 佘霖琳 https://tennnx.github.io |
51255903108 田锦东 https://philosober.github.io |
51255903101 章可儿 https://nicole01101101zke.github.io/ |
52265903004 贾金萍 https://jalingpp.github.io/ |
52275903004 吴家仪 https://wujwyi.github.io/ |
51255903092 陈鹏 https://xiaofeichong123.github.io/ |
51255903010 王一平 https://wypsz.github.io/ |
51255903045 刘馨 https://ifshine.github.io/ |
52265903007 童一啸 https://tyxtyxtyxtyx.github.io/ |
51255903079 史浩洋 https://github.com/HaoyangShi/HaoyangShi.github.io |
51255903042 张博宇 https://skydzl.github.io/ |
51255903076 杨杰 https://yangjie407.github.io/ |
51255903091 肖政 https://xunx911.github.io/ |
51255903089 杜涵悦 https://hydududu.github.io/ |
51255903085 何诗雨 |
51255903020王泽锟https://kalbert2333.github.io/ |
获取本页评论列表(edges): query {
repository(owner: "X-lab2017", name: "oss101") {
issue(number: 33) {
title
comments(first: 100) {
edges {
node {
author {
login
}
body
}
}
}
}
}
} 通过浏览器解析打印列表: // 定义一个正则表达式,用来匹配学号和姓名
const regex = /(\d{11})\s+(\S+)/;
// 定义一个空数组,用来存放结果
const resultArray = [];
// 使用for...of循环遍历对象数组
for (const obj of objArray) {
// 获取login属性
const login = obj.node.author.login;
// 获取body属性
const body = obj.node.body;
// 使用正则表达式匹配学号和姓名
const match = regex.exec(body);
if (match) {
// 获取第一个分组(学号)
const id = match[1];
// 获取第二个分组(姓名)
const name = match[2];
// 把结果添加到数组中
resultArray.push(`${login}\t${id}\t${name}`);
} else {
resultArray.push(`${login}\t${body}`);
}
}
console.log(resultArray.join('\n')) 共计 81 人次完成本作业:
UPD: 由于格式问题,match遗漏的两位:
UPD2: 由于未知原因,对我不可见的评论: #33 (comment) yangjie407 51255903076 杨杰 |
作业:部署一个静态网页博客。静态网页博客是一种不需要后端服务器和数据库支持的网站,只需要使用HTML、CSS和JavaScript等前端技术就可以实现。静态网页博客有很多优点,比如速度快、安全稳定、易于维护等。
可能用到的技术以及概念:
本次作业的具体内容和要求如下:
本次作业将按照以下几个维度对
总结报告
和网站内容
给出评分:The text was updated successfully, but these errors were encountered: