我正在尝试重现Symfony 2 Cookbook Tutorial Add a new Tag
我使用与教程中完全相同的代码,但我在jQuery包含时遇到了一些问题。
new.html.twig:
<form action="..." method="POST" {{ form_enctype(form) }}>
{# render the task's only field: description #}
{{ form_row(form.description) }}
<h3>Tags</h3>
<ul class="tags" data-prototype="{{ form_widget(form.tags.vars.prototype)|e }}">
{# iterate over each existing tag and render its only field: name #}
{% for tag in form.tags %}
<li>{{ form_row(tag.name) }}</li>
{% endfor %}
</ul>
<a href="#" class="add_tag_link">Add a tag</a>
{{ form_rest(form) }}
{# ... #}
</form>
这就是我在base.html.twig中包含jquery的方法:
<script src="http://code.jquery.com/jquery.js"></script>
下一步: 在页面的某处添加脚本标记,以便开始编写一些JavaScript。
所以我也复制粘贴在base.html.twig中。
// Get the ul that holds the collection of tags
var collectionHolder = $('ul.tags');
// setup an "add a tag" link
var $addTagLink = $('<a href="#" class="add_tag_link">Add a tag</a>');
var $newLinkLi = $('<li></li>').append($addTagLink);
jQuery(document).ready(function () {
// add the "add a tag" anchor and li to the tags ul
collectionHolder.append($newLinkLi);
// count the current form inputs we have (e.g. 2), use that as the new
// index when inserting a new item (e.g. 2)
collectionHolder.data('index', collectionHolder.find(':input').length);
$addTagLink.on('click', function (e) {
// prevent the link from creating a "#" on the URL
e.preventDefault();
// add a new tag form (see next code block)
addTagForm(collectionHolder, $newLinkLi);
});
});
function addTagForm(collectionHolder, $newLinkLi) {
// Get the data-prototype explained earlier
var prototype = collectionHolder.data('prototype');
// get the new index
var index = collectionHolder.data('index');
// Replace '__name__' in the prototype's HTML to
// instead be a number based on how many items we have
var newForm = prototype.replace(/__name__/g, index);
// increase the index with one for the next item
collectionHolder.data('index', index + 1);
// Display the form in the page in an li, before the "Add a tag" link li
var $newFormLi = $('<li></li>').append(newForm);
$newLinkLi.before($newFormLi);
}
最后,我在列表后写了一个标签。
但是,当我点击添加标记链接时,不会出现新的标记输入字段。
答案 0 :(得分:0)
请参阅浏览器调试器。有什么错误吗? 也许你使用旧的jquery版本? 确保启用了jquery并支持'on'事件(自1.9版本起)。