Why do I receive formatted text data in ajax from GO server
- I create an ajax POST to send an image to a GO server
$.ajax({
url: url,
type: "POST",
cache: false,
contentType: false,
processData: false,
data: formData
})
.done(function(e) {
console.log("successed uploading the picture")
console.log(e)
$('.file-upload-image').attr('src', e);
});
- After the GO server received the request and handled the logic, the response returns base64-encoded image string as the ajax response.
outputFile, err := os.Open(outputFileName)
if err != nil {
fmt.Println(err)
return
}
defer outputFile.Close()
// read file content into buffer
reader := bufio.NewReader(outputFile)
content, _ := ioutil.ReadAll(reader)
// Encode as base64.
base64Result := base64.StdEncoding.EncodeToString(content)
base64Result = fmt.Sprintf("data:image/%s;base64,%s", fileSufix, base64Result)
w.Write(byte(base64Result))
Here is the problem: in the console, what I receive in the response appears is something like:
I do not understand what the %v{0xc420158150}
is.
How can I get a clean string without %v{0xc420158150}
so I can use it in the image src attribute?
ajax go
|
show 1 more comment
- I create an ajax POST to send an image to a GO server
$.ajax({
url: url,
type: "POST",
cache: false,
contentType: false,
processData: false,
data: formData
})
.done(function(e) {
console.log("successed uploading the picture")
console.log(e)
$('.file-upload-image').attr('src', e);
});
- After the GO server received the request and handled the logic, the response returns base64-encoded image string as the ajax response.
outputFile, err := os.Open(outputFileName)
if err != nil {
fmt.Println(err)
return
}
defer outputFile.Close()
// read file content into buffer
reader := bufio.NewReader(outputFile)
content, _ := ioutil.ReadAll(reader)
// Encode as base64.
base64Result := base64.StdEncoding.EncodeToString(content)
base64Result = fmt.Sprintf("data:image/%s;base64,%s", fileSufix, base64Result)
w.Write(byte(base64Result))
Here is the problem: in the console, what I receive in the response appears is something like:
I do not understand what the %v{0xc420158150}
is.
How can I get a clean string without %v{0xc420158150}
so I can use it in the image src attribute?
ajax go
fmt.Fprint()
accepts anio.Writer
as its first argument... you probably wanted to usefmt.Printf()
instead
– IronGeek
Nov 16 '18 at 4:02
can you give us the full code of the handler?
– xpare
Nov 16 '18 at 4:34
yes, can. I will update the question when I am home. Thanks for help @xpare
– shitoujizu
Nov 16 '18 at 6:17
@IronGeek I will tryfmt.Printf()
– shitoujizu
Nov 16 '18 at 6:23
@IronGeek When I usefmt.Printf("%v{0xc420158150}", base64Result)
, just produces thebase64ResultString+{0xc420158150}
. So I deleted the confusing part.
– shitoujizu
Nov 16 '18 at 15:45
|
show 1 more comment
- I create an ajax POST to send an image to a GO server
$.ajax({
url: url,
type: "POST",
cache: false,
contentType: false,
processData: false,
data: formData
})
.done(function(e) {
console.log("successed uploading the picture")
console.log(e)
$('.file-upload-image').attr('src', e);
});
- After the GO server received the request and handled the logic, the response returns base64-encoded image string as the ajax response.
outputFile, err := os.Open(outputFileName)
if err != nil {
fmt.Println(err)
return
}
defer outputFile.Close()
// read file content into buffer
reader := bufio.NewReader(outputFile)
content, _ := ioutil.ReadAll(reader)
// Encode as base64.
base64Result := base64.StdEncoding.EncodeToString(content)
base64Result = fmt.Sprintf("data:image/%s;base64,%s", fileSufix, base64Result)
w.Write(byte(base64Result))
Here is the problem: in the console, what I receive in the response appears is something like:
I do not understand what the %v{0xc420158150}
is.
How can I get a clean string without %v{0xc420158150}
so I can use it in the image src attribute?
ajax go
- I create an ajax POST to send an image to a GO server
$.ajax({
url: url,
type: "POST",
cache: false,
contentType: false,
processData: false,
data: formData
})
.done(function(e) {
console.log("successed uploading the picture")
console.log(e)
$('.file-upload-image').attr('src', e);
});
- After the GO server received the request and handled the logic, the response returns base64-encoded image string as the ajax response.
outputFile, err := os.Open(outputFileName)
if err != nil {
fmt.Println(err)
return
}
defer outputFile.Close()
// read file content into buffer
reader := bufio.NewReader(outputFile)
content, _ := ioutil.ReadAll(reader)
// Encode as base64.
base64Result := base64.StdEncoding.EncodeToString(content)
base64Result = fmt.Sprintf("data:image/%s;base64,%s", fileSufix, base64Result)
w.Write(byte(base64Result))
Here is the problem: in the console, what I receive in the response appears is something like:
I do not understand what the %v{0xc420158150}
is.
How can I get a clean string without %v{0xc420158150}
so I can use it in the image src attribute?
ajax go
ajax go
edited Nov 16 '18 at 15:47
shitoujizu
asked Nov 16 '18 at 3:06
shitoujizushitoujizu
347
347
fmt.Fprint()
accepts anio.Writer
as its first argument... you probably wanted to usefmt.Printf()
instead
– IronGeek
Nov 16 '18 at 4:02
can you give us the full code of the handler?
– xpare
Nov 16 '18 at 4:34
yes, can. I will update the question when I am home. Thanks for help @xpare
– shitoujizu
Nov 16 '18 at 6:17
@IronGeek I will tryfmt.Printf()
– shitoujizu
Nov 16 '18 at 6:23
@IronGeek When I usefmt.Printf("%v{0xc420158150}", base64Result)
, just produces thebase64ResultString+{0xc420158150}
. So I deleted the confusing part.
– shitoujizu
Nov 16 '18 at 15:45
|
show 1 more comment
fmt.Fprint()
accepts anio.Writer
as its first argument... you probably wanted to usefmt.Printf()
instead
– IronGeek
Nov 16 '18 at 4:02
can you give us the full code of the handler?
– xpare
Nov 16 '18 at 4:34
yes, can. I will update the question when I am home. Thanks for help @xpare
– shitoujizu
Nov 16 '18 at 6:17
@IronGeek I will tryfmt.Printf()
– shitoujizu
Nov 16 '18 at 6:23
@IronGeek When I usefmt.Printf("%v{0xc420158150}", base64Result)
, just produces thebase64ResultString+{0xc420158150}
. So I deleted the confusing part.
– shitoujizu
Nov 16 '18 at 15:45
fmt.Fprint()
accepts an io.Writer
as its first argument... you probably wanted to use fmt.Printf()
instead– IronGeek
Nov 16 '18 at 4:02
fmt.Fprint()
accepts an io.Writer
as its first argument... you probably wanted to use fmt.Printf()
instead– IronGeek
Nov 16 '18 at 4:02
can you give us the full code of the handler?
– xpare
Nov 16 '18 at 4:34
can you give us the full code of the handler?
– xpare
Nov 16 '18 at 4:34
yes, can. I will update the question when I am home. Thanks for help @xpare
– shitoujizu
Nov 16 '18 at 6:17
yes, can. I will update the question when I am home. Thanks for help @xpare
– shitoujizu
Nov 16 '18 at 6:17
@IronGeek I will try
fmt.Printf()
– shitoujizu
Nov 16 '18 at 6:23
@IronGeek I will try
fmt.Printf()
– shitoujizu
Nov 16 '18 at 6:23
@IronGeek When I use
fmt.Printf("%v{0xc420158150}", base64Result)
, just produces the base64ResultString+{0xc420158150}
. So I deleted the confusing part.– shitoujizu
Nov 16 '18 at 15:45
@IronGeek When I use
fmt.Printf("%v{0xc420158150}", base64Result)
, just produces the base64ResultString+{0xc420158150}
. So I deleted the confusing part.– shitoujizu
Nov 16 '18 at 15:45
|
show 1 more comment
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53330842%2fwhy-do-i-receive-formatted-text-data-in-ajax-from-go-server%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53330842%2fwhy-do-i-receive-formatted-text-data-in-ajax-from-go-server%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
fmt.Fprint()
accepts anio.Writer
as its first argument... you probably wanted to usefmt.Printf()
instead– IronGeek
Nov 16 '18 at 4:02
can you give us the full code of the handler?
– xpare
Nov 16 '18 at 4:34
yes, can. I will update the question when I am home. Thanks for help @xpare
– shitoujizu
Nov 16 '18 at 6:17
@IronGeek I will try
fmt.Printf()
– shitoujizu
Nov 16 '18 at 6:23
@IronGeek When I use
fmt.Printf("%v{0xc420158150}", base64Result)
, just produces thebase64ResultString+{0xc420158150}
. So I deleted the confusing part.– shitoujizu
Nov 16 '18 at 15:45