每当我执行写操作时,我都会调用以下方法:它有效!但问题是,即使我将进行不同的调用,它也会始终显示最后结果的输出。我没有获得特定命令的更新值。
CBCharacteristic
要解决此问题,如果我们断开然后重新连接到外围设备,它将会更新结果。
无法理解这里发生了什么错误?
它与<?php
class Connection {
public static function connect(){
try{
//In the real code I typed the right parameters.
$connect = mysqli_connect("mysql.hostinger.co", "user", "password", "bd");
}catch(Exception $e){
die("Error". $e->getMessage());
echo "Error line". $e->getLine();
}
echo "This class works fine."; //I have added this to test if class works.
return $connect;
}
}
Connection::connect(); //I try get the message.
?>
对象有关吗?我们可以刷新它吗?我们需要刷新外围设备吗?
答案 0 :(得分:0)
只有在我重启BT设备时才会更新。因此,答案很短,但我花了1个小时才得到最新消息。