0

我拿了示例 HTML5 并在 iOS Safari 中进行了尝试。

示例照片出现,但不断加载,无法执行 Aviary 编辑操作。

有人有解决方案吗?

这是直接来自 Aviary 网站的示例代码:http://www.aviary.com/web-documentation

<!-- Load Feather code -->

<script type="text/javascript" src="http://feather.aviary.com/js/feather.js"></script>

<!-- Instantiate Feather -->

<script type="text/javascript">

        var featherEditor = new Aviary.Feather({

            apiKey: '12345678',

            apiVersion: 2,

            tools: 'all',

            appendTo: 'injection_site',

            onSave: function(imageID, newURL) {

                var img = document.getElementById(imageID);

                img.src = newURL;

            }

        });



        function launchEditor(id, src) {

            featherEditor.launch({

                image: id,

                url: src

            });

            return false;

        }

</script>



    <div id="injection_site"></div>



    <img id="image1" src="http://images.aviary.com/imagesv5/feather_default.jpg"/>



    <!-- Add an edit button, passing the HTML id of the image and the public URL ot the image -->

    <p><input type="image" src="http://advanced.aviary.com/images/feather/edit-photo.png" value="Edit photo" onclick="return launchEditor('image1', 'http://images.aviary.com/imagesv5/feather_default.jpg');" /></p>
4

3 回答 3

1

我通过 api@aviary.com 联系了 Aviary,他们提到他们今天修复了一个错误。现在可以了。

于 2012-05-21T23:39:56.240 回答
0

您必须将此代码放在实时服务器上,本地似乎在这里不起作用。Aviary Web 文档说“在您的服务器上设置一个位置,以便 Aviary 发送服务器到服务器的 HTTP POST”。

于 2013-06-03T08:31:15.673 回答
0

以防万一...您必须在照片中添加完整的“src”。相反,我们使用 "src='/upload/miPhoto.png'" 你必须使用 "src=' http://localhost:8080/project/upload/miPhoto.png '" 希望这会有所帮助!

于 2016-09-08T22:24:42.617 回答