Giter Club home page Giter Club logo

basic-rocket-web-server's People

Contributors

iferc avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

basic-rocket-web-server's Issues

I am not able to post data and not even result shows on postman

Hi @iferc I am working on the rust api and using your code reference to learn the basics. My get(fetch) is working but the POST is giving an error.
The command I am giving to POST data.
curl localhost:8000/todo -X POST -d "Everything is right" -H "Content-Type: application/json"

The error I am getting:
`
POST /todo application/json:

=> Matched: POST /todo application/json (add_todo_item)

=> Error: Couldn't parse JSON body: Error("expected value", line: 1, column: 1)

=> Outcome: Failure

=> Warning: Responding with 400 Bad Request catcher.

=> Response succeeded.

`
Main code:

fn main() {
    {
        let data_connection = match rusqlite::Connection::open("data.sql"){
            Ok(data_connection) => Ok(data_connection
                                          .execute(
                                              "create table if not exists todo_list (
                    id integer primary key,
                    item varchar(64) not null
                );",
                                              rusqlite::NO_PARAMS,
                                          )
                                          .unwrap()),
            Err(error) => Err("Not Connected")
        };

    }
    rocket::ignite().mount("/", routes![fetch_data,add_todo_item]).launch();
}

POSTCODE:

#[post("/todo", format = "json", data = "<item>")]
fn add_todo_item(item: Json<String>) -> Result<Json<Status>, String> {
    let db_connection = match Connection::open("data.sql") {
        Ok(connection) => connection,
        Err(_) => {
            return Err(String::from("Failed to connect to database"));
        }
    };

    let mut statement =
        match db_connection.prepare("insert into todo_list (id, item) values (null, $1);") {
            Ok(statement) => statement,
            Err(_) => return Err("Failed to prepare query".into()),
        };
    let results = statement.execute(&[&item.0]);

    match results {
        Ok(rows_affected) => Ok(Json(Status {
            message: format!("{} rows inserted!", rows_affected),
        })),
        Err(_) => Err("Failed to insert todo item".into()),
    }
}

Can you please help me with this? Thanks!

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.