摘要:
在Nginx中配置try_files server { listen 80; server_name localhost; root "****"; location / { try_files $uri $uri/ /index.html; index index.php index.html; 阅读全文
摘要:
server { listen 80; server_name localhost; root "E:/plan"; location / { index index.php index.html error/index.html; } location /api/{ proxy_pass http 阅读全文
摘要:
有些业务场景不适合异步获取信息,可以使用主动轮询+同步获取的方式获取OPC信息 using OPCAutomation; using System; using System.Collections.Generic; using System.Data.SqlClient; using System 阅读全文