我有两个文件, fun sendMessage(messageformat : String){
val smsManager = SmsManager.getDefault()
smsManager.sendTextMessage("smsgatewaynumber","srcnumber",messageformat, null, null)
}
和index.php
。我的table.php
包含在div的table.php
文件中。为此,我这样做是:
index.php
我的$("#tableloader").load('table.php')
每秒钟更改一次。为了在我尝试过的table.php
文件中反映出它的变化,
index.php
但是它只一次加载table.php,而不是每秒...
答案 0 :(得分:4)
您正在使用setTimeout()
,它只是在指定时间启动功能。 使用setInterval
可获得理想的结果。
Qproduct_innovation_level innovationLevel = selectFrom(product_innovation_level).
where(product_innovation_level.id.eq(1)).
firstResult(product_innovation_level);
int i = innovationLevel.level_customer.intValue();
Error: Type mismatch: cannot convert from NumberExpression<Integer> to int
答案 1 :(得分:1)