如何在Ember应用程序中嵌入Wufoo表单

时间:2015-06-08 15:39:58

标签: ember.js ember-cli wufoo

我的客户要求我将一个Wufoo表单集成到他们的Ember应用程序中,并提供以下JS(匿名):

PriorityQueue

我已尝试将其包含在index.html中并创建自定义组件,但不断收到来自Wufoo的错误:

<script type="text/javascript">var abc123;(function(d, t) {
var s = d.createElement(t), options = {
'userName':'example',
'formHash':'abc123',
'autoResize':true,
'height':'491',
'async':true,
'host':'wufoo.com',
'header':'show',
'ssl':true};
s.src = ('https:' == d.location.protocol ? 'https://' : 'http://') + 'www.wufoo.com/scripts/embed/form.js';
s.onload = s.onreadystatechange = function() {
var rs = this.readyState; if (rs) if (rs != 'complete') if (rs != 'loaded') return;
try { abc123 = new WufooForm();abc123.initialize(options);abc123.display(); } catch (e) {}};
var scr = d.getElementsByTagName(t)[0], par = scr.parentNode; par.insertBefore(s, scr);
})(document, 'script');</script>

有没有办法在Ember.js应用程序中使用提供的Wufoo JS?

0 个答案:

没有答案