Jcrop 检查 API 是否存在
我在使用 Jcrop API 时遇到问题。我认为我不需要详细说明为什么需要此检查,但我需要检查 Jcrop API 是否存在,以便我可以销毁它,或者如果已经创建了另一个 API,则不再创建它。有没有办法检查api是否存在?也许这是Jquery或javascript检查,我是一个初学者。在 Jcrop 文档中,我只找到了如何创建 api 并销毁它,而不是如何检查它是否存在。
有什么办法吗?
谢谢杰瑞
2
I am having problems with Jcrop API. I don't think I need to go into detail as why I need this check, but I need to check if the Jcrop API is present so I can destroy it or not create another one if it is already created. Is there a way to check if api is present? Maybe this is Jquery or javascript check, I am quite a beginner. In the Jcrop documentation I found out only how to crate api and destroy it, not how to check if it exists.
Is there any way?
Thank you
Jerry2
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我就是这样做的。
首先获取 API 对象:
在代码中您想要检查其存在的任何其他位置,只需对其进行 null 检查:
我也遇到了此 API 的问题,但由于不同的原因,它似乎:)
祝您好运!
I do it like this.
First grab the API object:
Anywhere else in your code you want to check for its existence, just null-check it:
I am also having issues with this API, but for different reasons it seems :)
Best of luck!