摘要: 控制器传入数据 视图渲染 # for循环 {% for item in overviewof %} {{ item.epg }} {% endfor %} # 跳转链接 {% url 'look' %} path('look/', views.look, name='look'), iframe跨越 阅读全文
posted @ 2024-03-23 16:34 海燕心海 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 安装相关的包 pip install django 创建流程 项目目录 移除模板位置,同时删除最外面的模板文件夹templates 快速创建应用 注册应用 注册路由 视图相关 模板 # 静态资源 {% load static %} <link rel="stylesheet" href="{% st 阅读全文
posted @ 2024-03-23 16:29 海燕心海 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 第一步:将下载的依赖包放到vendor目录下 将下载的依赖包梵高 vendor目录下 第二步:修改 autoload_psr4.php 文件 文件位置位于:vendor/composer/autoload_psr4.php 将自己的依赖包填写上去,如下: 假设加载的命名空间为:AlibabaClou 阅读全文
posted @ 2024-01-09 16:00 海燕心海 阅读(99) 评论(0) 推荐(0) 编辑
摘要: <table class="layui-table" id="myTable"> <thead> <tr> <th>日期</th> <th>操作</th> </tr> </thead> <tbody> <tr> <td> <input type="text" class="layui-input d 阅读全文
posted @ 2023-12-19 08:19 海燕心海 阅读(71) 评论(0) 推荐(0) 编辑
摘要: dom-to-image.js 修改部分 /** * @param {Node} node - The DOM Node object to render * @param {Object} options - Rendering options, @see {@link toSvg} * @ret 阅读全文
posted @ 2023-10-30 23:26 海燕心海 阅读(229) 评论(0) 推荐(0) 编辑
摘要: 安装命令 composer create-project yiisoft/yii2-app-basic basic 报错信息 (curl error 28 while downloading https://asset-packagist.org/p/provider-latest/xxx.json 阅读全文
posted @ 2023-10-26 19:36 海燕心海 阅读(111) 评论(0) 推荐(0) 编辑
摘要: 第一步:接收微信发来的xml数据 有以下两种方式 $xml = $GLOBALS['HTTP_RAM_POST_DATA'];// php7 版本以上不能使用 $xml = file_get_contents('php://input'); 第二步:对接收过来的数据进行处理 libxml_disab 阅读全文
posted @ 2023-10-26 19:03 海燕心海 阅读(65) 评论(0) 推荐(0) 编辑
摘要: 1、对查询进行优化,应尽量避免全表扫描,首先应考虑在 where 及 order by 涉及的列上建立索引 2、应尽量避免在 where 子句中对字段进行 null 值判断,创建表时NULL是默认值,但大多数时候应该使用NOT NULL,或者使用一个特殊的值,如0,-1作为默 认值 3、应尽量避免在 阅读全文
posted @ 2023-05-10 17:02 海燕心海 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 官网文档 https://developers.weixin.qq.com/doc/offiaccount/Basic_Information/Access_Overview.html php 示例代码 public function index() { $signature = $_GET["si 阅读全文
posted @ 2023-05-08 22:56 海燕心海 阅读(65) 评论(0) 推荐(0) 编辑
摘要: #模型假设和参数是什么? 模型假设和参数是什么:用一个函数关系去表示的一只样本的数据的后面存在的规律。参数的是用于表现的规律的特征参数。 #评价函数(损失)是什么? 评价函数(损失):是与评价预测与目标的之间的一种关系函数。衡量模型预测值和真实值差距的评价函数也被称为损失函数(损失Loss) 机器学 阅读全文
posted @ 2023-05-08 22:56 海燕心海 阅读(16) 评论(0) 推荐(0) 编辑