- 博客(4)
- 收藏
- 关注
原创 postgresql geometry 使用小记
update tableNameset "geometry字段"= ST_GeomFromText('LineString('||坐标点范围 ||')',4326 ); 转换成线 update tableNameset "geometry字段" = ST_GeomFromText('Point('||坐标点范围 ||')',4326 ); 转换成点 UPDATE tableNam...
2019-06-14 11:34:58
5151
1
原创 记一次 .netcore程序部署到docker
刚好手上有个项目使用.netcore开发并部署到docker上面.就花了心思了解了docker如何部署. so,写下来做个备忘. [ ] 安装docker,并下载应用程序运行的docker镜像 [ ] 在需要打包的文件中加入"Dockerfile"文件并写好相应必要的配置 FROM microsoft/dotnet:2.1-aspnetcore-runtime //使...
2019-04-30 16:43:03
1174
原创 备忘-复制指定文件夹中的所有文件(包括子文件夹)到指定文件夹中的类
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading; using System.Threading.Tasks; using System.Windows.Forms; namespace ...
2019-03-21 15:32:44
438
转载 webapi 开发日记
上几个项目使用到api,也遇到几个问题,记录一下,以作备忘 1,mvc api 只默认支持post 和get方法,不支持put和delete,而webapi 则get put post delete都支持. 2,使用Cors解决跨域问题 在 WebApiConfig.cs 文件中添加 //跨域访问配置 config.EnableCors(new
2017-10-24 09:50:32
303
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人