上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 65 下一页
摘要: Jquery 处理返回的 Json 数组 <script> for (var i = 0; i < photos.length; ++ i) { console.log(photos[i]); console.log(photos[i].imgurl); } </script> 阅读全文
posted @ 2019-11-15 14:46 GetcharZp 阅读(230) 评论(0) 推荐(0) 编辑
摘要: jquery 判断数组是否为空 if (data.length 0) { console.log("数组为空"); } 阅读全文
posted @ 2019-11-15 14:39 GetcharZp 阅读(8764) 评论(0) 推荐(0) 编辑
摘要: 腾讯定位的使用 通过前端的JS代码获取到定位信息,在通过 POST 方法吧请求提交到后台服务器中 <script type="text/javascript" src="https://apis.map.qq.com/tools/geolocation/min?key=your key&refere 阅读全文
posted @ 2019-11-15 09:13 GetcharZp 阅读(672) 评论(0) 推荐(0) 编辑
摘要: PHP 发送get请求 file_get_contents 方法: $s = file_get_contents("http://apis.map.qq.com/ws/distance/v1/?mode=driving&from=30.56808,104.064305&to=30.5702,104. 阅读全文
posted @ 2019-11-14 16:34 GetcharZp 阅读(11314) 评论(0) 推荐(0) 编辑
摘要: 微信开发者工具可以获取地址而手机上不能获取地址 原因: 未进行 wx.config 的配置; 解决方法: 传入对应的签名信息,对 wx.config 进行配置 参考文档 阅读全文
posted @ 2019-11-14 11:32 GetcharZp 阅读(476) 评论(0) 推荐(0) 编辑
摘要: 微擎签名出错 错误信息: config:fail,Error: 系统错误,错误码:63002,invalid signature 修改方法: PHP 端 $account_api = WeAccount::create(); $jssdk = $account_api->getJssdkConfig 阅读全文
posted @ 2019-11-14 11:06 GetcharZp 阅读(2162) 评论(0) 推荐(0) 编辑
摘要: 微擎 pdo_fetchall() 函数 注意点: 该函数内部直接执行原生 SQL 语句 如果在传递表名的时候使用了 tablename 。则不加 ims_ 前缀 参数的传递通过 :param 的形式 例子: 通过tablename指定表名: $qr = pdo_fetchall("SELECT ` 阅读全文
posted @ 2019-11-13 10:41 GetcharZp 阅读(2422) 评论(0) 推荐(0) 编辑
摘要: thinkphp6.0 多应用模块下提示控制器不存在 在项目根目录下使用Composer composer require topthink/think-multi-app 参考链接 阅读全文
posted @ 2019-11-13 00:02 GetcharZp 阅读(1346) 评论(0) 推荐(0) 编辑
摘要: thinkphp6.0 开启调试模式 首先确认自己是通过 composer 进行的下载,然后修改系统目录下的 .example.env 为 .env 文件 修改 config->app.php 的 ‘show_error_msg’ => true 使用模板报错 Driver [Think] not 阅读全文
posted @ 2019-11-12 22:41 GetcharZp 阅读(903) 评论(0) 推荐(0) 编辑
摘要: Jquery才可以使用 this 指定当前DOM jquery获取并设置它的元素 <div class="shop-item" style="line-height: 30px" shopid="{$shop['id']}" shopname="{$shop['shopname']}" latng= 阅读全文
posted @ 2019-11-12 12:37 GetcharZp 阅读(259) 评论(0) 推荐(0) 编辑
上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 65 下一页