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