Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
Education
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
黄奎
Education
Commits
30d45433
Commit
30d45433
authored
Jul 20, 2022
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
3b44ebcd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
49 additions
and
0 deletions
+49
-0
Config.cs
Edu.Common/Config.cs
+26
-0
CourseExamModule.cs
Edu.Module.Exam/CourseExamModule.cs
+23
-0
No files found.
Edu.Common/Config.cs
View file @
30d45433
...
@@ -197,6 +197,32 @@ namespace Edu.Common
...
@@ -197,6 +197,32 @@ namespace Edu.Common
}
}
}
}
/// <summary>
/// 获取URL参数
/// </summary>
/// <param name="url"></param>
/// <param name="paraName"></param>
/// <param name="isDecode"></param>
/// <returns></returns>
public
static
string
GetParameterUrl
(
string
url
,
string
paraName
,
bool
isDecode
=
false
)
{
Regex
re
=
new
Regex
(
@"(^|&)?(\w+)=([^&]+)(&|$)?"
,
RegexOptions
.
Compiled
);
MatchCollection
mc
=
re
.
Matches
(
url
);
foreach
(
Match
m
in
mc
)
{
if
(
m
.
Result
(
"$2"
).
Equals
(
paraName
))
{
string
paraResult
=
m
.
Result
(
"$3"
);
if
(
isDecode
)
return
System
.
Web
.
HttpUtility
.
UrlDecode
(
paraResult
);
else
return
paraResult
;
}
}
return
""
;
}
/// <summary>
/// <summary>
/// 获取erp站点图片
/// 获取erp站点图片
/// </summary>
/// </summary>
...
...
Edu.Module.Exam/CourseExamModule.cs
View file @
30d45433
...
@@ -12,6 +12,7 @@ using Edu.Repository.Question;
...
@@ -12,6 +12,7 @@ using Edu.Repository.Question;
using
Edu.Module.Question
;
using
Edu.Module.Question
;
using
Edu.Common.Plugin
;
using
Edu.Common.Plugin
;
using
Edu.Common.Enum.Question
;
using
Edu.Common.Enum.Question
;
using
System.Text.RegularExpressions
;
namespace
Edu.Module.Exam
namespace
Edu.Module.Exam
{
{
...
@@ -1006,14 +1007,35 @@ namespace Edu.Module.Exam
...
@@ -1006,14 +1007,35 @@ namespace Edu.Module.Exam
}
}
if
(
questionList
!=
null
&&
questionList
.
Count
>
0
)
if
(
questionList
!=
null
&&
questionList
.
Count
>
0
)
{
{
foreach
(
var
item
in
questionList
)
foreach
(
var
item
in
questionList
)
{
{
string
VideoUrl
=
""
;
var
tempQuestion
=
stuExamList
?.
FirstOrDefault
(
qitem
=>
qitem
.
QuestionId
==
item
.
QuestionId
);
var
tempQuestion
=
stuExamList
?.
FirstOrDefault
(
qitem
=>
qitem
.
QuestionId
==
item
.
QuestionId
);
decimal
Score
=
5
;
decimal
Score
=
5
;
var
QuestionContentObj
=
analysisQuestion
.
ParsingQuestion
(
item
.
QuestionTypeKey
,
item
.
QuestionContent
,
isNoAnswer
:
true
);
var
QuestionContentObj
=
analysisQuestion
.
ParsingQuestion
(
item
.
QuestionTypeKey
,
item
.
QuestionContent
,
isNoAnswer
:
true
);
List
<
object
>
quesAnswerList
=
new
List
<
object
>();
List
<
object
>
quesAnswerList
=
new
List
<
object
>();
if
(
item
.
QuestionTypeKey
==
"listening"
||
item
.
QuestionTypeKey
==
"reading-comprehensio"
)
if
(
item
.
QuestionTypeKey
==
"listening"
||
item
.
QuestionTypeKey
==
"reading-comprehensio"
)
{
{
if
(
item
.
QuestionTypeKey
==
"listening"
)
{
try
{
var
tempObj
=
Regex
.
Match
(
item
.
Title
,
"<iframe.+?src=[\"'](.+?)[\"'].*?>"
,
RegexOptions
.
IgnoreCase
);
if
(
tempObj
!=
null
&&
tempObj
.
Groups
.
Count
>
1
)
{
VideoUrl
=
tempObj
.
Groups
[
1
].
Value
;
if
(!
string
.
IsNullOrEmpty
(
VideoUrl
))
{
VideoUrl
=
Common
.
Config
.
GetParameterUrl
(
VideoUrl
,
"url"
,
isDecode
:
true
).
Replace
(
"http://"
,
"https://"
);
}
}
}
catch
{
}
}
try
try
{
{
...
@@ -1057,6 +1079,7 @@ namespace Edu.Module.Exam
...
@@ -1057,6 +1079,7 @@ namespace Edu.Module.Exam
}
}
var
obj
=
new
var
obj
=
new
{
{
VideoUrl
,
item
.
QuestionId
,
item
.
QuestionId
,
item
.
QuestionTypeId
,
item
.
QuestionTypeId
,
item
.
QuestionTypeKey
,
item
.
QuestionTypeKey
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment