public static function remainingUser($task_id)
{
return \DB::table('task_users')
->rightJoin('users', 'task_users.user_id', '=', 'users.id')
->select(
\DB::raw("DISTINCT(`users`.`id`)"),
'users.name as name'
)
->where('task_id', '!=', $task_id)
->orWhere('task_id', null)
->get();
}
答案 0 :(得分:1)
该问题的第一个原因是,当该方法需要字节数组时,您正在传递字符串。
1。) 这将为您提供一个字节数组,以传递给FileWriteAllBytes。
Encoding.ASCII.GetBytes(Properties.Resources.Test);
进行上述更改应该可以解决问题。希望这会有所帮助!