fix conflict 2

This commit is contained in:
HuJiaxuan 2017-01-01 11:35:07 +00:00
commit 774c7a5fa8
8 changed files with 38 additions and 34 deletions

View File

@ -106,6 +106,7 @@ class MissionsController < ApplicationController
def commentPublish
#Todo
puts "I'm in"
content = params[:content]
mission_id = params[:mission_id]
user_id = session[:user_id]

View File

@ -4,27 +4,20 @@ class ProjectsController < ApplicationController
skip_before_action :verify_authenticity_token, :only => [:index,:create,:addUsers,:detail]
#=============================================>获取我的项目列表user_id保存在session中.
def index
#Todo
uid = session[:user_id]
#pid = Projects_user.find_by(project_id: uid)
pids = []
projects = Projects_user.where("user_id = ?",uid).all
projects.each do |projects_user|
pids << projects_user.project_id
end
data = []
pids.each do |pid|
data=[]
Projects_user.where(:user_id => uid).each do |i|
pid=i.project_id
p=Project.find_by(id:pid)
mc = Mission.where(:project_id => pid).size
uc = Projects_user.where(:project_id => pid).size
sc = Share.where(:project_id => pid).size
puts pid
i = Project.find_by(id: pid)
data += [{
:id => i.id,
:name => i.name,
:content => i.content,
data+=[{
:id => pid,
:name => p.name,
:content => p.content,
:mission_count => mc,
:users_count => uc,
:shares_count => sc
@ -46,14 +39,13 @@ class ProjectsController < ApplicationController
project = Project.new(params_project)
project.users << user
project.save
#project save的时候会保存 projects_users
# params_pu = {project_id: project.id,user_id: user.id}
# puts params_pu
# pu = Projects_user.new(params_pu)
# pu.save
render :json => {:code => 0}
if project.save
Projects_user.create(project_id:project.id,user_id:uid)
render status: :created, nothing: true
else
render json: project.errors, status: :unprocessable_entity
end
#render :json => {:code => 0}
end
@ -115,5 +107,8 @@ class ProjectsController < ApplicationController
}
}
end
private
def project_params
params.require(:project).permit(:name,:content)
end
end

View File

@ -1,8 +1,12 @@
class Project < ActiveRecord::Base
has_and_belongs_to_many :users
<<<<<<< HEAD
validate :require_at_least_on_user,on: :update # 项目中最少要有一个用户
=======
validate :require_at_least_on_user,on: :update # 项目中最少要有一个用户
>>>>>>> 27ebee595014926419b6ccba922ad39450b73f6b
validates :name, presence: true, length: { minimum: 1, maximum: 50 }, uniqueness: true
private

View File

@ -9,9 +9,6 @@ users = [
{:name => '杨诏', :password => '123123123', :email => 'lucio.yang@qq.com', :phone => '15652591529', :created_at => "2016/12/27", :updated_at => "2016/12/27"},
{:name => '陈翊', :password => '123456', :email => '1085730215@qq.com', :phone => '18269771988', :created_at => "2016/12/28", :updated_at => "2016/12/27"}
]
projects = [
{:id=>'1001',:name => 'AAAA',:content => 'i like helloworld',:mission_count => '20',:users_count => '15',:shares_count => '15'}
]
users.each do |user|
User.create!(user)

View File

@ -174,6 +174,7 @@
type: "get",
dataType: "json",
url:"/session.json",
async: false,
statusCode: {
200: function(data) {// 请求成功
$("#name1").text(data.name);
@ -192,6 +193,9 @@
}
});
});
if(getProjectId()==null){
window.location="pages/project_select.html";
}
function logout(){
$.ajax({
type: "delete",

View File

@ -1,7 +1,4 @@
function initCurrent(){
if(getProjectId()==null){
window.location="pages/project_select.html";
}
LoginUserInfo={
selectProject:getProjectId(),
name:'',

View File

@ -230,22 +230,27 @@
});
});
$("#creat_project").click(function(){
var pName=$("#exampleName").val();
var pContent=$("#exampleTextarea").val();
$.ajax({
type:"post",
dataType:"json",
url:"/projects.json",
data:{
"name":$("#exampleName").val(),
"content":$("#exampleTextarea").val()
"project[name]":pName,
"project[content]":pContent
},
statusCode: {
200: function() {// 请求成功
201: function() {// 请求成功
alert("创建成功!");
window.location.reload();
},
401:function(){// 未授权
alert("未登录!");
window.location.href="login.html";
},
422:function(){
alert("项目名重复!");
}
}
});

View File

@ -68,7 +68,8 @@ RSpec.describe MissionsController, type: :controller do
mission = Mission.new(params_mission)
mission.save
post :commentPublish,mission_id: mission.id,content: "用户评论"
post :comments , mission_id: mission.id,content: "用户评论"
puts "hello world"
puts response.body
end