部署到新服务器的IIS的时候发现这个错误: Request is not available in this context 解决方案: <system.web> <customErrors mode="Off" /> <authentication mode="Forms"> <forms loginUrl=" slidingExpiration="true" /> </authe…
如果ASP.NET程序以IIS集成模式运行,在Global.asax的Application_Start()中,只要访问Context.Request,比如下面的代码 var request = Context.Request; 就会引发异常: Request is not available in this context 不信你可以试试. 这个问题只会出现在IIS集成模式(Integrated),如果改为传统模式(Classic),问题就不会出现. 今天就被这个问题小小折腾了一下.我们在错误…
Caused by: com.mchange.v2.resourcepool.TimeoutException: A client timed out while waiting to acquire a resource from com.mchange.v2.resourcepool.BasicResourcePool@1483de4 -- timeout at awaitAvailable() 把spring-dao.xml中 <property name="maxPoolSize&…
Scala CookBook: http://scalacookbook.com/ @throws(classOf[java.io.IOException]) @throws(classOf[java.net.SocketTimeoutException]) def get(url: String, connectTimeout:Int =5000, readTimeout:Int =5000, requestMethod: String = "GET") = { import jav…
Grids 网格,以表格的形式显示数据, 网格可以跨越整个form,也可以是form中的一项. 被称为子网格(subgrid). grid有两种, 一种是read-only grid, 另一种是editable grid. grid有4中events我们可以使用: OnLoad OnChange OnRecordSelect OnSave 其中OnChange 属于data change,  其余3个属于UI Change 我们可以通过以下代码来获取subgrid的数据 function doS…
FormContext 提供界面或者界面上控件的的引用. 比如说 quick view control, row in an editable grid 等等. Xrm.Page 和 getFormContext都可以用的引用. 但是Xrm.Page 将来会被弃用, 所以建议搭建开始使用getFormContext 我们来看一下Xrm.Page 和 getFormContext的区别: function displayName() { var firstName = Xrm.Page.getAt…
1. executionContext. executionContext定义代码在其中执行的上下文. 并且适用在再form或者grid中的event handler. 比如formContext 或者 gridContext, 或者是save event中. 有两种方式去定义,适用execution context: 1. 适用UI来定义event handlers. 适用Pass execution context as first parameter 在handler properties…
1.问题描述 技术栈:前后端项目分离(Springboot+Vue+MybatisPlus) 前端报错信息: 后端报错信息: 2.问题分析 这里使用了ResultFul风格的接口设计方式.增删改查对应不同的方法请求.这里错误使用了方法请求导致 3.问题源头 前端调用后台接口的方法 4.解决方法 修改调用后台接口的方法 前端调用后台接口 后台接口设计 5.知识扩展(认识HTTP方法与CRUD动作映射) 动作 普通的CRUD的url 普通的CRUD的HTTP方法 RestFul的URL RestFu…
问题 自从谷歌浏览器升级到chrome94版本后,在非安全网站下通过请求本地接口就会出现以下错误: Access to XMLHttpRequest at 'http://127.0.0.1:10005/' from origin 'http://testing.hongyangcloud.com' has been blocked by CORS policy: The request client is not a secure context and the resource is in…