Ajax需要用PHP函数加密,问题

发布于 2024-10-24 04:37:21 字数 512 浏览 4 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半夏半凉 2024-10-31 04:37:21

如果我理解正确的话,您正在尝试使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文