Giter Site home page Giter Site logo

Comments (7)

PabloVallejo avatar PabloVallejo commented on June 21, 2024

Hi, @sylouuu, thanks on your question.
I put together a quick pen, that shows how Handlers, Models and View can communicate.
http://codepen.io/PabloVallejo/pen/KoIab

If you have more questions, please don't hesitate on asking or creating an issue.

from gillie.

PabloVallejo avatar PabloVallejo commented on June 21, 2024

Regarding your example, you should make sure that there and endpoint for /person, that is, an API that will receive the POST request and return a response. If the request fails, the event post.create will not be triggered.

from gillie.

sylouuu avatar sylouuu commented on June 21, 2024

My POST request is 200 HTTP code, but no JSON result, is that matter?

Is it important to declare in this order: M > V > C(H) ?

from gillie.

PabloVallejo avatar PabloVallejo commented on June 21, 2024

Yes, given that the request, expects to receive JSON data, and an empty string doesn't qualify for JSON.
http://stackoverflow.com/questions/18231285/jquery-ajax-call-returns-empty-error-if-the-content-is-empty

Also, it's important to declare you scripts M > V > H.
http://pablovallejo.github.io/gillie/#order-of-scripts-inclusion

from gillie.

sylouuu avatar sylouuu commented on June 21, 2024

Thank's, almost done. I didn't find any example to communicate between handler & view from an event (in handler)?

My click event must trigger a view method which updates the DOM.

from gillie.

PabloVallejo avatar PabloVallejo commented on June 21, 2024

Well, actually the events you define in the handler, can only call handler methods, but what you can do is from the method, invoke the view member.

// Handler
// ...
    events: {
        'click .intro-text': 'showPost'
    },

    showPost: function(e) {

        var target = e.currentTarget
        ,   postId = $( target ).data( 'post-id' );

        // Call view method
        demoView.myMethod( postId );
    }

// ...

from gillie.

sylouuu avatar sylouuu commented on June 21, 2024

That's right! Thank's again.

from gillie.

Related Issues (9)

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.