在我的一个项目中,代码:
= link_to "add", new_me_category_path, class: "btn btn-success", remote: true
可以正确加载远程表单。
但是有些不能工作,浏览器没有执行responese js代码。我需要像这样添加“数据:{type:”script“}”:
= link_to "add", new_me_category_path, class: "btn btn-success", remote: true, data: {type: "script"}
我想知道原因。