Ajax需要用PHP函数加密,问题
ajax 请求正在工作,但我遇到的问题是如何在发出请求之前使用 PHP 函数加密数据?
这是我正在尝试的 JS
$("#sensitive_data").blur(function() {
alert($(this).val());
$.ajax({
url: 'db.php?check=<?php echo $object->encrypting_data('+$(this).val()+') ?>',
type: 'POST',
error : function (){ document.title='error'; },
success: function (data) {
alert(data);
}
});
});
如果我在 php 函数中传递静态值,它就会起作用
The ajax request is working but the problem I'm having is how to encrypt the data with my PHP function before the request is made?
Here is the JS I'm trying
$("#sensitive_data").blur(function() {
alert($(this).val());
$.ajax({
url: 'db.php?check=<?php echo $object->encrypting_data('+$(this).val()+') ?>',
type: 'POST',
error : function (){ document.title='error'; },
success: function (data) {
alert(data);
}
});
});
It works if I pass a static value in the php function
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我理解正确的话,您正在尝试使用 PHP 函数在将客户端数据发送到服务器之前对其进行加密。
这是不可能的,因为您无法在客户端调用 PHP 函数。我也不确定你想实现什么目标。
If I understand right, you're trying to use a PHP function to encrypt client-side data before it's sent to the server.
That's impossible, because you can't call a PHP function on the client-side. I'm also not sure what you want to accomplish.