`
var imageScaleFactor = 0.5;
var outputStride = 16;
var flipHorizontal = false;
var imageElement = document.getElementById('video');
posenet.load().then(function(net){
return net.estimateSinglePose(imageElement, imageScaleFactor, flipHorizontal, outputStride)
}).then(function(pose){
console.log(pose);
})
我想将这些数据保存到数据库中。我该怎么办?
如何将数据从console.log
保存到MySQL数据库?我使用PHP和JavaScript。我想将这些数据保存到数据库中。我该怎么办?
答案 0 :(得分:-2)
您可以创建一个PHP处理程序,然后可以通过ajax POST将console.log()JS转储发送到该处理程序。这是弥合我所能想到的差距的唯一方法。
在Javascript中,您可以覆盖内置的console.log
函数来完成此操作:
console.log = function(value){
...
// do your ajax post here sending value to your php script that writes it to the db
...
};