有没有更好的方法来更新调用 PHP 页面的 img 标签?

发布于 2024-12-04 13:35:45 字数 695 浏览 0 评论 0原文

我正在使用 jcrop,在用户 crps 图像之后,我调用一个返回 img 标签的 php 页面,如下所示:

$.get("get_profile_picture.php", function(data) {
    $('#profile_photo_id').html(data);

    jQuery('#cropbox').Jcrop({
        onChange: showPreview,
        onSelect: showPreview,
        aspectRatio: 1
    });        
});

$.get("get_profile_thumb.php", function(data) {
    $('#profile_thumb_id').html(data);
});

这工作正常,但我担心的是,每次用户上传新图像时,我都会进行两次额外的调用。从 get_profile_picture.php 返回的 img src 代码如下所示:

<img src=<?php echo(getProfileThumb($user_id, FALSE)) ?> id="cropbox" />

我很想知道是否有更优雅的解决方案。我尝试为“cropbox”id 设置 attr 'src' 标记,但它需要首先执行其中的 PHP 代码。有什么想法或建议吗?

I'm using jcrop and after a user crps an image I make a call to a php page that returns the img tag like so:

$.get("get_profile_picture.php", function(data) {
    $('#profile_photo_id').html(data);

    jQuery('#cropbox').Jcrop({
        onChange: showPreview,
        onSelect: showPreview,
        aspectRatio: 1
    });        
});

$.get("get_profile_thumb.php", function(data) {
    $('#profile_thumb_id').html(data);
});

This works fine but my concern is that I'm making two additional calls everytime a user uploads a new image. The img src code returned from get_profile_picture.php looks like this:

<img src=<?php echo(getProfileThumb($user_id, FALSE)) ?> id="cropbox" />

I'm curious to know if there is a more elegant solution. I've tried setting the attr 'src' tag for the "cropbox" id but it needs to execute the PHP code inside first. Any thoughts or suggestions?

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

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

发布评论

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

评论(1

メ斷腸人バ 2024-12-11 13:35:45

如果您想摆脱第二个 GET,您可以使用第一个 GET 中加载的 img 标签(当然还有图像),并使用 css 将其大小调整为缩略图的大小。

if you want to get rid of the second GET you could use the loaded img tag (and image of course) from the first GET and resize it with css to the size of your tumbnail.

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