第一步:在项目中创建一个js文件,然后把下面的代码全部拷贝进去 /** * 高德地图定位 * @type {{}} */ export const location = { initMap(id){ let mapObj = new AMap.Map(id, {}) let geolocation; ...
分类:
其他好文 时间:
2021-03-05 13:07:43
阅读次数:
0
问题现象 集成华为HMS SDK应用内支付的相关能力时,参考华为提供的文档,对支付订单进行校验,结果总是报错如下: {"responseCode":"6","responseMessage":"Token is expired or invalid"} 问题定位 联系华为官方技术客服(地址:http ...
分类:
其他好文 时间:
2021-03-04 13:25:55
阅读次数:
0
1、安装easywechat composer require "overtrue/laravel-wechat:^6.0" 2、生成配置文件 php artisan vendor:publish --provider="Overtrue\LaravelWeChat\ServiceProvider" ...
分类:
微信 时间:
2021-03-04 13:25:03
阅读次数:
0
Security and Cryptography in Python - Hash Functions(3) How password are Verified https://docs.python.org/3/library/hashlib.html https://en.wikipedia. ...
分类:
编程语言 时间:
2021-03-03 12:13:31
阅读次数:
0
一、使用redis缓存准测 1. 经常存取,且不会改变的数据可以用缓存来存储,比如首页数据,数据量虽然大,但它不会经常改变;2. 经常使用(这里的经常使用的意思是经常作dml操作),但数据量小,比如说购物车数量的改变,就可以使用缓存; 二、python中使用redis 安装:pip install ...
分类:
编程语言 时间:
2021-03-02 12:14:34
阅读次数:
0
模块化结合typescript - 泛型改造 // 为函数添加泛型 function useURLLoader<T>(url: string) { const result = ref<T | null>(null) // 在应用中的使用,可以定义不同的数据类型 interface DogResul ...
分类:
其他好文 时间:
2021-03-01 13:32:50
阅读次数:
0
启动类 import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication;import org.springframework.c ...
分类:
其他好文 时间:
2021-03-01 13:32:05
阅读次数:
0
今天来试试mybatis新的写法,0配置文件 代码可以这么写 package com.cnsuning.com.mapper; public interface UserMapper { @Select("SELECT * FROM users") @Results({ @Result(proper ...
分类:
编程语言 时间:
2021-03-01 13:06:16
阅读次数:
0
nginx服务器地址及端口:127.0.0.1:80 后端服务地址及端口:127.0.0.1:8080 测试URL:http://127.0.0.1:80/api/upload 一 nginx配置: location /api/ { proxy_pass http://127.0.0.1:8080/ ...
分类:
其他好文 时间:
2021-03-01 13:05:41
阅读次数:
0
<script>function getQueryVariable(variable) { var query = window.location.search.substring(1); var vars = query.split("&"); for (var i=0;i<vars.length ...
分类:
Web程序 时间:
2021-02-27 13:14:25
阅读次数:
0