Giter Club home page Giter Club logo

Comments (5)

dosubot avatar dosubot commented on June 12, 2024 2

Based on the code you've shared, it seems like you're trying to set the Content-Type header to "application/octet-stream" in the _Lsmdb_Get0_HTTP_Handler function. However, the Content-Type header is not being set as expected and is instead returning as "application/json".

This could be due to the fact that the Content-Type header is being set after the response has already been written. In Go, once the header is written, any subsequent changes to the header will not be reflected in the response. This is why it's important to set the header before writing the response.

Here's how you can modify your function to set the Content-Type header before writing the response:

func _Lsmdb_Get0_HTTP_Handler(srv LsmdbHTTPServer) func(ctx http.Context) error {
	return func(ctx http.Context) error {
		var in GetRequest
		if err := ctx.BindQuery(&in); err != nil {
			return err
		}
		if err := ctx.BindVars(&in); err != nil {
			return err
		}
		http.SetOperation(ctx, OperationLsmdbGet)
		h := ctx.Middleware(func(ctx context.Context, req interface{}) (interface{}, error) {
			return srv.Get(ctx, req.(*GetRequest))
		})
		out, err := h(ctx, &in)
		if err != nil {
			return err
		}
		reply := out.(*GetReply)
		ctx.Response().Header().Set("Content-Type", "application/octet-stream")
		return ctx.Result(200, reply.Value)
	}
}

In the above code, ctx.Response().Header().Set("Content-Type", "application/octet-stream") is used to set the Content-Type header before writing the response.

This solution is based on a similar issue found in the Kratos repository: [Question]设置的Header不生效. The issue was resolved by setting the header on the response object directly.

Please try this solution and let me know if it works for you. If you're still facing issues, it would be helpful to know more about any middleware or filters that might be affecting the response.

Sources

About Dosu

This response is meant to be useful and save you time. It is not meant to be a precise solution, but rather a starting point for your own research.

Help me be more useful! Please leave a 👍 if this is helpful and 👎 if it is irrelevant.

If you want to continue the conversation, start your reply with @dosu-bot.

from kratos.

dosubot avatar dosubot commented on June 12, 2024

嘿,@Tsan1024!我们又见面了!很高兴再次看到你的提问。别担心,我正在查看你的问题,很快就会给你一个完整的答案。

from kratos.

kratos-ci-bot avatar kratos-ci-bot commented on June 12, 2024

Bot detected the issue body's language is not English, translate it automatically. 👯👭🏻🧑‍🤝‍🧑👫🧑🏿‍🤝‍🧑🏻👩🏾‍🤝‍👨🏿👬🏿


Hey @Tsan1024! We meet again! Nice to see your question again. Don't worry, I'm looking at your question and will give you a complete answer soon.

from kratos.

Tsan1024 avatar Tsan1024 commented on June 12, 2024

依旧没有生效, 返回的依然是application/json

from kratos.

kratos-ci-bot avatar kratos-ci-bot commented on June 12, 2024

Bot detected the issue body's language is not English, translate it automatically. 👯👭🏻🧑‍🤝‍🧑👫🧑🏿‍🤝‍🧑🏻👩🏾‍🤝‍👨🏿👬🏿


It still doesn’t take effect, and what is returned is still application/json.

from kratos.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.