Web_programming
Ir al canal en Telegram
Sharif web programming If you have any questions, please feel free to ask(@yumcoder)
Mostrar más1 052
Suscriptores
+124 horas
Sin datos7 días
-530 días
Archivo de publicaciones
1 052
جلسه به صورت آموزش گام به گام نخواهد بود بلکه به صورت اشتراک تجربیات و پرسش و پاسخ خواهد بود
1 052
تلاش دارم یک جلسه آزاد برای مروری بر موضوع امنیت سرور به زودی برگزار کنیم. در این جلسه تلاش داریم از تجربه های واقعی درون کشور بهره بگیریم. بنابراین اگر به این موضوع علاقه مند هستید در کانال زیر عضو شوید تا بر اساس ان بتوانیم برنامه ریزی کنیم.
1 052
آزمون ساعت ۳ بعد از ظهر فردا شنبه ۲۳ دی ماه در ساختمان ابن سینا(الف 10) خواهد بود
1 052
کد جلسه قبل برای اتصال به سرور:
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>
);
}
}
1 052
فیسبوک رسما AR Studio خود را منتشر کرد.
https://developers.facebook.com/docs/camera-effects/tutorials
¡Ya disponible! Investigación de Telegram 2025 — los principales insights del año 
