Giter VIP home page Giter VIP logo

Comments (12)

amine014 avatar amine014 commented on May 21, 2024

Any help please ?

from vue-resource.

JosephSilber avatar JosephSilber commented on May 21, 2024

Try using the then callback instead of passing the callback directly.

...get(...).then(function(response) { /* use response.data */ });

from vue-resource.

amine014 avatar amine014 commented on May 21, 2024

Thank you Joseph for the answer, But I'm not sure that I understand it, The probleme I have with IE is that even if I do this : -----> this.$http.post('auth/login') <------i'll have the same error message. It's not recognizing I think (this.$http) I tried (VUE.HTTP) too :(

from vue-resource.

nteath avatar nteath commented on May 21, 2024

I just came across the same issue. Any help would be appreciated

from vue-resource.

amine014 avatar amine014 commented on May 21, 2024

It's making me fool !! nteath if you find any solution please share it

from vue-resource.

nteath avatar nteath commented on May 21, 2024

I tried what @JosephSilber suggested but with no luck. He suggested instead of passing a callback function as the third argument in the post function, you can do something like the following:

this.$http.post('url', data).then(
function(response) {
// do something
}
);

from vue-resource.

amine014 avatar amine014 commented on May 21, 2024

I'm trying jQuery now, and it works even with CSRF:

$.ajax({
method: "POST",
url: "auth/login"+ '?_token='.concat(document.querySelector('#token').getAttribute('value')),
data: { email: this.loginRequest.email, password: this.loginRequest.password }
})
.done(function( msg ) {
alert( msg );
});

from vue-resource.

nteath avatar nteath commented on May 21, 2024

Ok good to know, i had it previously with jquery but never tested it on IE.

from vue-resource.

amine014 avatar amine014 commented on May 21, 2024

nteath you're working for a personal project or you're developer ?

from vue-resource.

nteath avatar nteath commented on May 21, 2024

@amine014 It's a simple personal project for now. I just want to get familiar with vue for now

from vue-resource.

JosephSilber avatar JosephSilber commented on May 21, 2024

@amine014 @nteath which version of vue-resource are you using?

I tried this in IE11 on Windows 7 and it worked as expected.


The problem I have with IE is that even if I do this: this.$http.post('auth/login') i'll have the same error message.

@amine014 that doesn't really ring right. Can you paste the actual error you're getting, in French?

from vue-resource.

nteath avatar nteath commented on May 21, 2024

I just updated to v0.1.8 and the issue seems to be resolved. I am testing on Windows & IE 11.

from vue-resource.

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.