11 2020 档案
摘要:微信APP支付成功后,回调(C# .netcore) [HttpPost] public async Task<string> GetNotify() { //获取回调POST过来的xml数据的代码 Stream stream = HttpContext.Request.Body; byte[] b
阅读全文
摘要:uniapp 用view组件作为按钮 防止重复点击 我的实现方法 用两个相同的view,未点击时,显示第一个隐藏第二个;点击后,隐藏第一个显示第二个,任务处理完成后恢复初始状态 1、先在<template>中创建两个相同的view <view class="btnbox" @click.stop="
阅读全文
摘要:uniapp 点击按钮时改变颜色,点击结束后恢复原颜色 1 <template> 2 <view class="container"> 3 <view class="listbox"> 4 <view class="sublistbox"> 5 <view class="box30"> 6 <tex
阅读全文
摘要:APP微信支付 前端uniapp 后端netcore 实现方法 1、前端uniapp实现方法 2、前端代码uniapp 1 <template> 2 <view class="container"> 3 <view class="uni-padding-wrap"> 4 <view style="b
阅读全文
摘要:uniapp关于ttf字体图标使用的问题 一、使用流程: 1、首先要有一个字体图标文件(例如:uni.ttf),文件位置/static/uni.ttf,以及如何增加、编辑字体图标; 2、将uni.ttf文件转成Base64(转码后的字符串不能包含回车换行等) 3、修改/components/uni-
阅读全文
摘要:1、云服务器下载并安装dotnet-hosting-3.1.9-win.exe 下载地址: https://download.visualstudio.microsoft.com/download/pr/beca42b0-54a8-4364-86b8-a3d88003fbb7/592e0eec1e5
阅读全文
摘要:百度地图SDK 如何选中指定的marker(覆盖物)进行操作(删除) 在addOverlay之前,增加markers的属性id,并赋值 1 function markerDevice(points, infoWindows, myicon,devicebarcode) { 2 var markers
阅读全文