-
Notifications
You must be signed in to change notification settings - Fork 8.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[zh-cn] Update response.url #14923
[zh-cn] Update response.url #14923
Conversation
Preview URLs Flaws (1)URL:
External URLs (1)URL:
(comment last updated: 2023-09-21 03:32:34) |
fetch(myRequest).then((response) => { | ||
console.log(response.url); // 返回 https://developer.mozilla.org/en-US/docs/Web/API/Response/flowers.jpg | ||
response.blob().then((myBlob) => { | ||
const objectURL = URL.createObjectURL(myBlob); | ||
myImage.src = objectURL; | ||
}); | ||
}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This code example is not match with the source file. Could you also update the en-US document :)
Co-authored-by: A1lo <[email protected]>
This pull request has merge conflicts that must be resolved before it can be merged. |
I haven't notice that the file has been removed in #15095. Sorry about that |
Should I reopen this PR 🤔 |
Merge main branch and keep this file when resolving the conflict. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you @jasonren0403
Description
clear untranslated content
Motivation
Additional details
Related issues and pull requests
part of #14272
blocked by mdn/content#28412