03 2022 档案

摘要:新建文件夹request,在里面放一个文件index.js,代码如下: export const request = (params) => { return new Promise((resolve,reject)=>{ const baseUrl = 'https://www.cnblogs.c 阅读全文
posted @ 2022-03-31 11:09 小默同学 阅读(122) 评论(0) 推荐(0) 编辑
摘要:原文:https://blog.csdn.net/weixin_42920780/article/details/109804850 阅读全文
posted @ 2022-03-29 15:42 小默同学 阅读(32) 评论(0) 推荐(0) 编辑
摘要:new关键字的作用 创建一个对象并且将构造函数内的this指针指向该对象。代码如下: function Func() { // 构造函数名字首字母一般大写 this.name = "nerd"; this.age = 18; } let handsome_guy = new Func(); cons 阅读全文
posted @ 2022-03-23 15:13 小默同学 阅读(32) 评论(0) 推荐(0) 编辑
摘要:把 \usepackage{graphics} 改为 \usepackage{graphicx}。 就可以了。 阅读全文
posted @ 2022-03-12 23:00 小默同学 阅读(853) 评论(0) 推荐(0) 编辑
摘要:终于成功了,哭了。 https://blog.csdn.net/weixin_42188677/article/details/112610016 阅读全文
posted @ 2022-03-11 10:31 小默同学 阅读(303) 评论(0) 推荐(0) 编辑
摘要:所有要用到的js文件:https://pagecdn.com/lib/ace 教程:https://github.com/ajaxorg/ace 自己写了个python编辑器的示例代码如下: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> < 阅读全文
posted @ 2022-03-05 03:29 小默同学 阅读(34) 评论(0) 推荐(0) 编辑
摘要:百度的东西很杂,没有通用的代码方便,然后我就整理了下通用点的发消息代码。 代码如下: import requests import json headers = {'Content-Type': 'application/json'} # url 是自定义机器人的Webhook data = {"m 阅读全文
posted @ 2022-03-05 02:42 小默同学 阅读(93) 评论(0) 推荐(0) 编辑