ar
Feedback
Web_programming

Web_programming

الذهاب إلى القناة على Telegram

Sharif web programming If you have any questions, please feel free to ask(@yumcoder)

إظهار المزيد
1 052
المشتركون
+124 ساعات
لا توجد بيانات7 أيام
-530 أيام
أرشيف المشاركات
پروژه تمدید شد

جلسه به صورت آموزش گام به گام نخواهد بود بلکه به صورت اشتراک تجربیات و پرسش و پاسخ خواهد بود

تلاش دارم یک جلسه آزاد برای مروری بر موضوع امنیت سرور به زودی برگزار کنیم. در این جلسه تلاش داریم از تجربه های واقعی درون کشور بهره بگیریم. بنابراین اگر به این موضوع علاقه مند هستید در کانال زیر عضو شوید تا بر اساس ان بتوانیم برنامه ریزی کنیم.

آزمون ساعت ۳ بعد از ظهر فردا شنبه ۲۳ دی ماه در ساختمان ابن سینا(الف 10) خواهد بود

پروژه نهایی درس

پروژه پایانی را به زودی ارسال خواهم کرد. زمان تحویل آن ۱۴ ماه بعد خواهد بود.

زمان آزمون ۲۳ این ماه ساعت ۳ بعد از ظهر ساختمان ابن سینا الف ۱۰ است

create-react-app-redux-master.zip1.46 KB

src.zip0.04 KB

کد جلسه قبل برای اتصال به سرور: export default class LoadParseObj extends Component { constructor(){ super(); this.state = {date: []}; this.onSuccuss = this.onSuccuss.bind(this); this.onError = this.onError.bind(this); } onSuccuss(result){ console.log("result " + result); //setTimeout(()=> this.setState({date: result}), 2000); // for test! this.setState({date: result}); } onError(error){ console.log("error " + error); this.setState({date: []}); // todo: handle error state! } componentDidMount() { var query = new Parse.Query("Monster"); // todo: class name (myclass) must be constant! //query.equalTo("...", "..."); query.find({ success: (result) => {this.onSuccuss(result)}, error: (error) => {this.onError(error)}, }); } render() { const data = this.state.date; let result; if (data.length < 1){ result = < div>LoadParseObj... </div>; } else { const items = data.map((item) =>{ return ( <li key={item.id}> {item.get('strength')} </li> ); }); result = <ul>{items}</ul>; } return ( <div> {result} </div> ); } }

فیس‌بوک رسما AR Studio خود را منتشر کرد. https://developers.facebook.com/docs/camera-effects/tutorials

برنامه امروز

بررسی اتصال به redis https://redis.io/commands/monitor $ telnet localhost 6379

در بخش demo میتوانید با نحوه کار با این کتابخانه آشنا شوید