我有一个页面,在这里我试图循环mysql查询的结果,在这个块中,我需要将JS new date().getTime()值发送到一个php函数中,以计算经过的时间,所有这些时间都在while循环中。
我怎样才能做到这一点?
我的php页面类似于:
<body>
<?php
while($rows = $result->fetch_assoc()){
echo "<div>".// now here i want to send the time value from JS to function
like time($a JS va
我提供的服务可能需要超过一分钟的时间并返回一些数据。这是服务代码的一部分。
var deferred = $q.defer();
//check data is in cache
//if not, some process (take some time)
deferred.resolve( data);
});
return deferred.promise;
并试图在连续两个js文件上使用此服务。这是调用服务的js代码的一部分。
myService.get().then( function( data) { //works });
它应该是这样工作的
我这里有点问题。我不知道为什么会发生这种事。我将时间戳代码与Moment.js库放在一起,不仅与那个库一起,最近我为显示时间戳手工创建了时间戳,但是当我发送请求时,时间没有更新。我把日期时间放进了我的文件路径。但这是服务器文件中的工作。
所以,例如
server.js
var express = require('express')
var app = express()
var moment = require('moment')
app.use(function(req, res, next){
console.log(moment().format(