scala项目使用IntelliJ社区版编译错误

时间:2017-11-03 23:07:49

标签: scala apache-spark intellij-idea build

使用IntelliJ(社区版)构建scala项目时出现以下构建错误:

错误:(42,609)未找到:value collect_list

1 个答案:

答案 0 :(得分:1)

<%= form_for @user do |form| %> <%= form.text_field :email %> <%= form.submit %> <% end %> 是一个 spark 函数,因此您需要将<%= form_with url: users_path do |form| %> <%= form.text_field :email %> <%= form.submit %> <% end %> spark函数库作为

<%= form_with model: @user do |form| %>
  <%= form.text_field :email %>
  <%= form.submit %>
<% end %>
相关问题