دریافت مشاوره

اگه می‌خواهید مسیر تحصیلی‌تان را با اطمینان انتخاب کنید، مشاوران ما در وایز اپلای آماده‌اند تا با مشاوره رایگان و تخصصی شما را همراهی کنند. تیم ما با بررسی شرایط شما، بهترین گزینه‌های دانشگاهی و رشته‌های تحصیلی را معرفی می‌کنند تا تصمیمی درست برای آینده‌تان بگیرید.

چرا مشاوره رایگان با وایز اپلای؟

  • مشاوره تخصصی: مشاوران ما با استفاده از تجربه و دانش به‌روز، بهترین راه‌حل‌ها را به شما پیشنهاد می‌دهند.
  • پشتیبانی در تمام مراحل: از انتخاب رشته تا تکمیل مدارک و اخذ پذیرش، در هر مرحله در کنار شما خواهیم بود.
  • دسترسی به اطلاعات جدید: ما شما را از آخرین فرصت‌های تحصیلی مطلع می‌کنیم تا هیچ فرصتی را از دست ندهید.

برای شروع، همین حالا فرم را پر کنید و اولین قدم را به سوی آینده‌ای روشن بردارید!

لطفا برای تکمیل این فرم، جاوا اسکریپت را در مرورگر خود فعال کنید.
نام
(function(){ const EP = { location: 'https://wiseapplyedu.com/portal/api/tahsil-location/', maghta: 'https://wiseapplyedu.com/portal/api/maghta/', duration: 'https://wiseapplyedu.com/portal/api/modat-zaman-tahsil/', price: 'https://wiseapplyedu.com/portal/api/request-price/', uni_type: 'https://wiseapplyedu.com/portal/api/uni-type/', programs: 'https://wiseapplyedu.com/portal/api/programs/' }; let currentPage = 1; async function fetchData(url){ const res = await fetch(url, { method:'POST', headers:{'Content-Type':'application/json'}, body: JSON.stringify({}) }); return (await res.json()).data||[]; } function populateSelect(id, items){ const sel = document.getElementById(id); if(!sel) return; sel.innerHTML = ``; items.forEach(o=>{ sel.insertAdjacentHTML('beforeend', ``); }); } async function loadFilters(){ const [l,m,d,p,u] = await Promise.all([ fetchData(EP.location), fetchData(EP.maghta), fetchData(EP.duration), fetchData(EP.price), fetchData(EP.uni_type) ]); populateSelect('location_filter',l); populateSelect('maghta_filter', m); populateSelect('duration_filter',d); populateSelect('price_filter', p); populateSelect('uni_type_filter',u); } async function loadPrograms(){ const params = { page: currentPage, title: "", location_id: document.getElementById('location_filter').value||"", maghta_id: document.getElementById('maghta_filter').value ||"", duration_id: document.getElementById('duration_filter').value||"", uni_type_id: document.getElementById('uni_type_filter').value||"", price_from:"",price_to:"",hazine_request:"" }; const res = await fetch(EP.programs, { method:'POST', headers:{'Content-Type':'application/json'}, body:JSON.stringify(params) }); const data = (await res.json()).data||[]; const wrap = document.getElementById('programs_wrapper'); if(currentPage===1) wrap.innerHTML = ''; if(data.length){ data.forEach(p=>{ wrap.insertAdjacentHTML('beforeend', `
${p.title}

${p.title}

دانشگاه: ${p.university_title}

کشور: ${p.location}

مدت: ${p.modat} ماه

قیمت: ${p.price} ${p.currency}

`); }); document.getElementById('load_more_btn').style.display='block'; } else { document.getElementById('load_more_btn').style.display='none'; } } function init(){ loadFilters().then(loadPrograms); document.querySelectorAll('#filters select') .forEach(sel=>sel.addEventListener('change', ()=>{ currentPage=1; loadPrograms(); })); document.getElementById('load_more_btn') .addEventListener('click', ()=>{ currentPage++; loadPrograms(); }); } (function wait(){ document.getElementById('filters') ? init() : setTimeout(wait,200); })(); })(); (function(){ const EP = { location: 'https://wiseapplyedu.com/portal/api/tahsil-location/', maghta: 'https://wiseapplyedu.com/portal/api/maghta/', duration: 'https://wiseapplyedu.com/portal/api/modat-zaman-tahsil/', price: 'https://wiseapplyedu.com/portal/api/request-price/', uni_type: 'https://wiseapplyedu.com/portal/api/uni-type/', programs: 'https://wiseapplyedu.com/portal/api/programs/' }; let currentPage = 1; async function fetchData(url){ const res = await fetch(url, { method:'POST', headers:{'Content-Type':'application/json'}, body: JSON.stringify({}) }); if (!res.ok) throw new Error(`HTTP ${res.status}`); const json = await res.json(); return json.data || []; } function populateSelect(id, items){ const sel = document.getElementById(id); if (!sel) return; sel.innerHTML = ``; items.forEach(o => { sel.insertAdjacentHTML('beforeend', ``); }); } async function loadFilters(){ const [locs, mags, durs, prices, types] = await Promise.all([ fetchData(EP.location), fetchData(EP.maghta), fetchData(EP.duration), fetchData(EP.price), fetchData(EP.uni_type) ]); populateSelect('location_filter', locs); populateSelect('maghta_filter', mags); populateSelect('duration_filter', durs); populateSelect('price_filter', prices); populateSelect('uni_type_filter', types); } async function loadPrograms(){ const params = { page: currentPage, title: "", location_id: document.getElementById('location_filter').value || "", maghta_id: document.getElementById('maghta_filter').value || "", duration_id: document.getElementById('duration_filter').value || "", uni_type_id: document.getElementById('uni_type_filter').value || "", price_from: "", price_to: "", hazine_request: "" }; const res = await fetch(EP.programs, { method:'POST', headers:{'Content-Type':'application/json'}, body: JSON.stringify(params) }); const json = await res.json(); const progs = json.data || []; const wrap = document.getElementById('programs_wrapper'); if (currentPage === 1) wrap.innerHTML = ''; if (progs.length) { progs.forEach(p => { wrap.insertAdjacentHTML('beforeend', `
${p.title}

${p.title}

دانشگاه: ${p.university_title}

کشور: ${p.location}

مدت: ${p.modat} ماه

قیمت: ${p.price} ${p.currency}

`); }); document.getElementById('load_more_btn').style.display = 'block'; } else { document.getElementById('load_more_btn').style.display = 'none'; } } function init(){ loadFilters().then(loadPrograms); document.querySelectorAll('#filters select').forEach(sel => { sel.addEventListener('change', () => { currentPage = 1; loadPrograms(); }); }); document.getElementById('load_more_btn') .addEventListener('click', () => { currentPage++; loadPrograms(); }); } if (document.readyState !== 'loading') init(); else document.addEventListener('DOMContentLoaded', init); })();