摘要:
<!--增加配置--> <PropertyGroup> <WindowsPackageType>None</WindowsPackageType> <WindowsAppSDKSelfContained>true</WindowsAppSDKSelfContained> </PropertyGrou 阅读全文
摘要:
多嵌入一层标签 .content { display: flex; height: 200px; } .parent { display: flex; justify-content: center; width: 800px; margin-left: 100px; border: 1px sol 阅读全文
摘要:
谷歌禁止声音播放处理方式 1、设置google浏览器,点击地址前面的图标,选择网站设置,找到声音,设置允许,需要用户配合设置 2、使用window.AudioContext,需要自己写代码 接口参考地址:https://developer.mozilla.org/zh-CN/docs/Web/API 阅读全文
摘要:
var NfcAdapter; var NdefRecord; var NdefMessage; var _getCardNo; export default { initNFC() { if (uni.getSystemInfoSync().platform == 'android') { lis 阅读全文
摘要:
<template> <div class="pic-map" @touchmove.stop.prevent="" ref="picMap" @touchstart="touchstart" @touchmove="touchmove" @touchend="touchend"> <div cla 阅读全文
摘要:
/// <summary> /// 1、支持定义模板变量的开头与结尾字符 /// 2、支持自定义模板变量查找正则表达式 /// 3、模板中的变量组成"变量开头_变量名称",如:txt_name,变量名称与class中的字段或属性一致 /// 4、支持定义模板中图片变量开头 /// 5、支持定义模板中 阅读全文
摘要:
public DBResult BatchInsert<T>(string tableName, List<T> entities) where T : class { if(entities == null || string.IsNullOrEmpty(tableName)) { return 阅读全文
摘要:
using Newtonsoft.Json.Serialization; using Sfq.WebApi.Models; using System; using System.Collections.Generic; using System.Linq; using System.Web.Http 阅读全文
摘要:
protected async Task<ResponseResult<(Dictionary<string,string> paths,T value)>> UploadFile<T>() { ResponseResult<(Dictionary<string, string> paths, T 阅读全文
摘要:
1.下载vue npm install vue-router 2.创建路由辅助js import Vue from 'vue' import VueRouter from 'vue-router' Vue.use(VueRouter) const router = new VueRouter({ r 阅读全文