摘要:
企业版:BF8Y8-GN2QH-T84XB-QVY3B-RC4DF 专业版:NYWVH-HT4XC-R2WYW-9Y3CM-X4V3Y 阅读全文
摘要:
using Newtonsoft.Json; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net; using System.Net.Http; using System.Net.Http.Headers; using System.Text; u... 阅读全文
摘要:
JSON.parse()【从一个字符串中解析出json对象】 例子: //定义一个字符串 var data='{"name":"goatling"}' //解析对象 JSON.parse(data) 结果是: name:"goatling" JSON.stringify()【从一个对象中解析出字符串】 var data={name:'goatling'} JSON.st... 阅读全文
摘要:
$.ajax({ url: 'http://192.168.1.85:8080/api/System/Login', type: 'post', contentType: "application/json; charset=utf-8", dataType: 'jso... 阅读全文
摘要:
$.ajax( { url: apiUrl + '/api/Code/GetCodeProductInfo', type: 'GET', //Header头部添加Token参数 beforeSend: fu... 阅读全文
摘要:
SELECT DATE_FORMAT(GenerateTime, '%m') as month, SUM(GenerateCount) AS count FROM identitycodetask WHERE DATE_FORMAT(GenerateTime, '%Y')='2019' AND ProductId='1' GROUP BY DATE_FORMAT(GenerateTime,... 阅读全文
摘要:
// 权限树状图规则defaultProps: { children: 'children', label: 'label'} //柱形图{generateChartDate: ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12 阅读全文
摘要:
解决方法: 在StartUp.cs文件中Configure(IApplicationBuilder app, IHostingEnvironment env)方法中添加如下代码: //跨域 app.UseHttpsRedirection().UseCors(builder => builder.Al 阅读全文
摘要:
是显示数据时时间格式化12小时制的问题 HH为24小时制 DataFormatString="{0:yyyy-MM-dd HH:mm:ss}" hh为12小时制 DataFormatString="{0:yyyy-MM-dd hh:mm:ss}" 阅读全文