最近在写重构,想把本来是写在 erb 中的 js 写到单独的 coffee 中,写着写着发现这样的代码
$.get("/ajax/add/company/followers", {current_user_id : <%= current_user_id %>, company_ids : company_ids }, function (data) {
if (data.success)
$this.parent().empty().append("<a class='mba_btn'>已关注</a>");
}, 'json');
瞬间被这个<%= current_user_id %>
难住了。好像 coffee 是不支持插入值。有什么办法可以绕过去,大早上,脑袋很不清醒啊,大脑混沌中