这是关于进行JavaScript调用的最佳实践的问题,该调用生成标准的“连接到QuickBooks”按钮(用于通过Intuit的v3 REST API建立与QuickBooks Harmony的连接)。
如果我按照Intuit的例子,我会:
...有效(对于许多“作品”的价值观),但感觉非常脆弱:
为了使这一切变得更有弹性,我将intuit.ipp.anywhere.js的引用和对intuit.ipp.anywhere.setup()的调用组合成一个JQuery .ajax()调用:
$.ajax({
url: 'https://appcenter.intuit.com/Content/IA/intuit.ipp.anywhere.js',
type: 'GET',
dataType: 'script',
timeout: 4000,
success: function(response) {
if (typeof intuit !== 'undefined') {
intuit.ipp.anywhere.setup({
menuProxy: 'MYMENUPROXYURL.aspx',
grantUrl: 'MYGRANTURL.aspx'
});
}
},
error: function(x, t, m) {
// show some friendly error message about Intuit downtime
}
});
...这也有效(对于“作品”的更多值):
有没有其他人采取不同的方法?
并且Intuit重新上线了吗?
答案 0 :(得分:2)
这与我们处理它的方式类似。我们将它包装在jQuery.getScript调用中,但显然.fail处理程序不适用于跨域脚本标记。我们的解决方案如下:
<script type="text/javascript>
var timeoutID;
timeoutID = window.setTimeout(function () {
$("#ippConnectToIntuit").replaceWith('<p class="error-message">There was a problem communicating with QuickBooks. The service may be down or in heavy use. Try again later.</p>');
}, 5000);
$.getScript("https://appcenter.intuit.com/Content/IA/intuit.ipp.anywhere.js")
.done(function () {
window.clearTimeout(timeoutID);
intuit.ipp.anywhere.setup({
menuProxy: '/path/to/our/menu/proxy',
grantUrl: '/path/to/our/grant/url'
});
});
</script>
<div id="ippConnectToIntuit"><ipp:connecttointuit></ipp:connecttointuit></div>