摘要:
下载链接: https://hsk.oray.com/download/ 配置第一个映射,http类型需要6元,tcp不收费,内网主机就是你的IPv4地址,打开cmd输入ipconfig就可以看到了 内网端口(就是你本地项目的端口号) 配置你的IIS,把项目配置上去 在IIS上浏览一下项目,在用花生 阅读全文
摘要:
appsettings.json "CorsUrls": [ "http://localhost:9527", "https://localhost:3000", ] 注册信息 var cors = Configuration.GetSection("CorsUrls").GetChildren() 阅读全文
摘要:
public ActionResult GetCourseList() { var mo = from e in gzhContext.WxCourseList.Select(m=>new { m.Id,m.Title,m.CourseName,m.Coursetype,m.StartTime, m 阅读全文
摘要:
这个问题是因为ios系统会默认你的input字体大小不得小于16px,要是小于16px系统就会给你放大页面 这个问题只需要把你的input输入框的字体大小改成16px style="font-size: 16px !important;" 阅读全文
摘要:
html <label> <input type="file" @change="tirggerFile($event)" /> </label> script methods: { tirggerFile: function(event) { var self = this; var file = 阅读全文
摘要:
getUrlKey(name) { return ( decodeURIComponent( (new RegExp("[?|&]" + name + "=" + "([^&;]+?)(&|#|;|$)").exec( location.href ) || [, ""])[1].replace(/\ 阅读全文
摘要:
注:主要是el-main的高度和绝对定位必须设置(样式在下面) html <el-main id="message" v-html="remsg" class="scrolldivmain">some code</el-main> js updated() { this.scrollToBottom 阅读全文