Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
fj-captcha-vue
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
郑磊
fj-captcha-vue
Commits
f0179a0b
Commit
f0179a0b
authored
Jun 21, 2024
by
郑磊
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
更新JSON解析
parent
d4dfd31e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
http.ts
src/core/http.ts
+2
-2
No files found.
src/core/http.ts
View file @
f0179a0b
...
...
@@ -107,7 +107,7 @@ function request<T = any>(
}
=
options
const
xhr
=
new
XMLHttpRequest
()
xhr
.
responseType
=
'
json
'
xhr
.
responseType
=
'
text
'
xhr
.
withCredentials
=
withCredentials
if
(
typeof
timeout
===
'number'
)
{
xhr
.
timeout
=
timeout
...
...
@@ -121,7 +121,7 @@ function request<T = any>(
resolve
({
status
:
xhr
.
status
,
headers
:
parseResponseHeaders
(
xhr
),
data
:
xhr
.
response
,
data
:
JSON
.
parse
(
xhr
.
responseText
)
,
})
})
xhr
.
addEventListener
(
'readystatechange'
,
function
()
{
...
...
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