0

我使用 a.post()在 python 函数中查询设备的状态。当它是 时done,它应该返回 python 函数的返回值。

$.post('/request', {inputText: fbNum,key_pressed: fbType.toString()}).done(function (reply) {
      if (reply ^= "count") {
             $('#status_table tr #'+eachStatus).empty().append(the-reply-value-here);
      } });

我的python文件的一部分:

elif "C?" in response[0]:
         status="Count= %sH"%response[0].strip()[-2:] 
return status

如何获取和显示状态?我.get在 jquery 中使用吗?但我不确定格式。是吗

$.get("/request", reply).done(function(data){
    $('#status_table tr #'+eachStatus).empty().append(the-reply-value-here);});

??

但我会的答复是这样的Count = FF。我要显示的只是FF. 我该怎么做?

4

1 回答 1

1

尝试

$.post('/request', {inputText: fbNum,key_pressed: fbType.toString()}).done(function (reply) {
    if (/^Count\s*=/.test(reply)) {
        $('#status_table tr #'+eachStatus).empty().append(reply.replace(/Count\s*=\s*/, ''));
    } 
});
于 2013-05-07T03:24:45.870 回答