上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 41 下一页
摘要: 有大佬曾经说过: Any application that can be written in JavaScript, will eventually be written in JavaScript. -- Jeff Atwood Markdown 已经是一个非常普及的标记语言了,JavaScri 阅读全文
posted @ 2021-03-01 16:44 makalo 阅读(2674) 评论(6) 推荐(1) 编辑
摘要: 苹果内购后台如何验证订单 查阅官方文档 https://developer.apple.com/library/content/releasenotes/General/ValidateAppStoreReceipt/Chapters/ValidateRemotely.html 其实挺简单的: 接口 阅读全文
posted @ 2021-02-25 15:47 makalo 阅读(2106) 评论(0) 推荐(0) 编辑
摘要: 参考: https://baijunyao.com/article/106 ** * 验证AppStore内付 * @param string $receipt_data 付款后凭证 * @return array 验证是否成功 */ function validate_apple_pay($rec 阅读全文
posted @ 2021-02-24 18:41 makalo 阅读(266) 评论(0) 推荐(0) 编辑
摘要: 问题 在使用Node.js写爬虫的时候,使用到了node 的request库,请求图片URL并保存到本地时。 遇到报错 Unhandled stream error in pipe request(downloadURL).pipe(fs.createWriteStream(path)) 原因 根据 阅读全文
posted @ 2021-02-24 09:56 makalo 阅读(521) 评论(0) 推荐(1) 编辑
摘要: 解决办法 这就是一个编码问题,我们需要用到chcp指令来解决这个问题。它是一个计算机指令,能够显示或设置活动代码页(即字符集编码)的编号,可以通过它来设置当前程序的字符集编码。 打开cmd.exe,执行指令:chcp,即可查看当前的字符集编码,一般会显示936 但是一般网页用的编码是UTF-8,活动 阅读全文
posted @ 2021-02-23 16:18 makalo 阅读(5020) 评论(2) 推荐(2) 编辑
摘要: 本文章是我使用弹性盒子的案例,仅供参考 参考: https://www.runoob.com/css3/css3-flexbox.html https://www.cnblogs.com/makalochen/p/13389628.html 基本html和css html <!DOCTYPE htm 阅读全文
posted @ 2021-02-23 15:45 makalo 阅读(238) 评论(0) 推荐(0) 编辑
摘要: 博客园的api 都是基于xml rpc调用 如这个获取用户信息的 用node的 xmlrpc库就可以这样写 先安装 npm install xmlrpc 在使用 var client = xmlrpc.createClient({ url: 'https://rpc.cnblogs.com/meta 阅读全文
posted @ 2021-02-23 14:50 makalo 阅读(273) 评论(0) 推荐(0) 编辑
摘要: MetaWeblog API中文说明 1、什么是MetaWeblog? MetaWebBlog API(MWA)是一个Blog程序接口标准,允许外部程序来获取或者设置Blog的文字和熟悉。他建立在XMLRPC接口之上,并且已经有了很多的实现。 2、基本的函数规范 有三个基本的函数规范: metaWe 阅读全文
posted @ 2021-02-23 10:55 makalo 阅读(191) 评论(0) 推荐(0) 编辑
摘要: 注意:metaweblog api 均为rpc服务 metaweblog api https://i.cnblogs.com/settings 在最下面,显示了 如我的就是:https://rpc.cnblogs.com/metaweblog/makalochen 如何上传文件 进入上面的链接, h 阅读全文
posted @ 2021-02-22 19:14 makalo 阅读(175) 评论(0) 推荐(0) 编辑
摘要: 什么是rpc RPC(Remote Procedure Call)远程过程调用,简单的理解是一个节点请求另一个节点提供的服务 本地过程调用:如果需要将本地student对象的age+1,可以实现一个addAge()方法,将student对象传入,对年龄进行更新之后返回即可,本地方法调用的函数体通过函 阅读全文
posted @ 2021-02-22 18:05 makalo 阅读(775) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 41 下一页