示例#1
0
        public JsonResult AbortNotLike(int target_id, int optionType)
        {
            if (Common.AbortNotLike(target_id, optionType))
            {
                //此处 删除用户行为
                UserActionRecord.DelNotRecommend(Common.UserInfo.User_ID, target_id, optionType);

                return(Json("{'status':'1'}"));
            }
            else
            {
                return(Json("{'status':'0';'error':'" + error + "'}"));
            }
        }