上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 72 下一页
摘要: 索引 方法一: 去掉Content Security Policy 方法二:不采用内联 CSP为什么禁止执行inline script? 方法三:修改CSP,列出允许执行的脚本代码的Hash值 不只是Electron页面,CSP(Content Security Policy)对于普通浏览器一样生效 阅读全文
posted @ 2021-11-14 22:51 xkfx 阅读(14227) 评论(0) 推荐(0) 编辑
摘要: NPM是Node.js的包管理工具,而Bower则是一个前端包管理工具。 根目录下只有一个index.html NPM安装Bootstrap 执行指令: $ cnpm install bootstrap- √ Installed 1 packages √ Linked 1 latest versio 阅读全文
posted @ 2021-11-14 13:15 xkfx 阅读(264) 评论(0) 推荐(0) 编辑
摘要: 背景:WEB项目迁移到Electron,原WEB项目中用了JQuery,迁移后运行,抛出Uncaught ReferenceError: $ is not defined Electron版本是15.3.0,参考了https://stackoverflow.com/questions/3262198 阅读全文
posted @ 2021-11-12 19:28 xkfx 阅读(581) 评论(0) 推荐(0) 编辑
摘要: IPC=inter-process communication=进程间通信 仍然以Electron读取本地文件并显示中的原始代码作为基础("electron": "^15.3.0") 例子1 preload.js(渲染进程向主进程发送hello): const { ipcRenderer } = r 阅读全文
posted @ 2021-11-10 22:22 xkfx 阅读(361) 评论(0) 推荐(0) 编辑
摘要: Electron读取本地文件并显示,也就是暴露一个读取本地特定文件内容的接口给渲染进程调用。 主要参考:https://stackoverflow.com/questions/44391448/electron-require-is-not-defined 基于官方的快速教程示例代码进行修改,原始代 阅读全文
posted @ 2021-11-09 16:55 xkfx 阅读(6331) 评论(0) 推荐(0) 编辑
摘要: 快速教程:https://www.runoob.com/nodejs/nodejs-http-server.html 以下内容摘自《nodejs真的是单线程吗? 》https://segmentfault.com/a/1190000014926921 其实只有js执行是单线程,I/O显然是其它线程。 阅读全文
posted @ 2021-11-07 20:28 xkfx 阅读(83) 评论(0) 推荐(0) 编辑
摘要: ListView横向列表 效果: (可以左右滑动) 代码形式1: main.dart import 'package:flutter/material.dart'; class MyApp extends StatelessWidget { @override Widget build(BuildC 阅读全文
posted @ 2021-10-29 13:21 xkfx 阅读(632) 评论(0) 推荐(0) 编辑
摘要: 例子1 效果: 代码: main.dart import 'package:flutter/material.dart'; class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { ret 阅读全文
posted @ 2021-10-29 12:19 xkfx 阅读(91) 评论(0) 推荐(0) 编辑
摘要: $ flutter runThe plugins `amap_location, permission_handler` use a deprecated version of the Android embedding.To avoid unexpected runtime failures, o 阅读全文
posted @ 2021-10-27 20:04 xkfx 阅读(2698) 评论(0) 推荐(0) 编辑
摘要: 执行git clone时出现 ssh: connect to host github.com port 22: Connection timed outfatal: Could not read from remote repository. Please make sure you have th 阅读全文
posted @ 2021-10-27 19:36 xkfx 阅读(364) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 72 下一页