Sorry, I am still trying to teach myself Javascript and I was wondering whether someone knew the best way to write object oriented Javascript with classes that will interact well with PHP classes.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Javascript is already object oriented, in regards to classes there are many ways in which to achieve “templates”. Since you are new to Javascript have a good read of any material from Douglas Crockford especially his book The Good Parts as he will enlighten you to the the true nature of Javascsript.
This leads me to the second part of your question, as to interacting well with PHP, my advice (from experience) is to have a good clear data serialization/deserialization layer from which you interact, JSON will help you immensely. Don’t try and be clever, Javascript is a very different language to PHP. Work with the language not against it.
Happy coding 🙂