我应该使用 https 请求还是 ajax 向客户端发送数据?

发布于 2025-01-04 20:04:13 字数 331 浏览 1 评论 0原文

所以我正在开发一个 A/B 测试网站,类似于 http://www.optimizely.com/ 我对网络开发还很陌生。 A/B 测试仪几乎允许客户创建其网站的变体,以根据用户响应(鼠标点击等)进行优化。因此,一旦我们的网站上出现了变体(例如更大的按钮尺寸),我的工作就是向客户端发送一个包,允许他们在页面加载时在客户端访问和运行变体的 JavaScript。我是否需要 ajax 调用来发送此数据,或者可以通过 https 请求来完成吗?我需要完成的工作有哪些优点和缺点? (我们使用 mysql、hadoop 和 php)。谢谢。

So i'm working on an A/B tester website, similar to http://www.optimizely.com/ and i'm quite new to web development. An A/B tester pretty much allows clients to create variants of their website to make optimizations based on user response (mouse clicks, etc.). So once the variants are made on our website (e.g. larger button size), my job is to send a package to the client which allows them to access and run the javascripts of the variants on the clients end when their page loads. Do i need an ajax call to send this data or can it be done via https request and what are the pros and cons for what i need done? (We're using mysql, hadoop and php). Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

李不 2025-01-11 20:04:13

这个问题对我来说没有多大意义。

HTTPS 是一种通信协议。 AJAX 是一种编程模式(或者,也许更讽刺的是,流行语)。 AJAX 最常使用 HTTPS 来完成客户端和服务器之间实际的安全通信。

This question doesn't make a lot of sense to me.

HTTPS is a communication protocol. AJAX is a programming pattern (or, perhaps more cynically, buzzword). AJAX most often would use HTTPS to accomplish the actual secure communication between client and server.

酒解孤独 2025-01-11 20:04:13

如果我正确理解你的意思....

取决于发送的数据 - 如果是个人数据,请始终使用 HTTPS 调用(即从 https://yourdomain.com/your_script.php),否则为 HTTP(即 http://yourdomain.com/your_script.php)就可以了(这两个都可以通过ajax完成,所以这不是问题)。

If I understand correctly what you mean....

Depends of what data is being sent - if it is personal data, always use HTTPS calls (ie. request the data from https://yourdomain.com/your_script.php), otherwise HTTP (ie. http://yourdomain.com/your_script.php) will be ok (both of these can be done via ajax, so that's not a problem).

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