我已经在asp.net核心EF中用MySql DB开发了一个应用程序。应用程序部署在上。我正在尝试将应用程序连接到同一个云项目下的云MySql。在本地,我能够连接这个数据库,但是当部署在google云上时,我会出错。
MySqlException:超时过期。操作完成前经过的超时时间或服务器没有响应。MySql.Data.Common.StreamCreator.GetTcpStream(MySqlConnectionStringBuilder设置)
MySqlException: Unable to connect to any of the specified MySQL hosts.**
我有一个基于云的应用程序,客户端代码用angular5编写,服务器端代码用asp.net MVC5编写。我在仪表板上显示了我的云服务器的日期时间。我想每分钟更改/更新仪表板上的时间,但不给服务器回调。我该怎么做呢?
我只想在客户端更改时间,而不想一次又一次地调用服务器来更新仪表板上的时间。该怎么做呢?
//data[0]['NOW()'] = This is time from dashboard
this.commonService.getCurrentDateTime().subscribe(data => {
var datePipe = new Dat