當我通過$ http服務將數據發佈到AngularJS中時,表單數據被添加在我的實際URL之前。因此,無論我的帖子是否成功,我都會重定向到我的默認路由頁面。
通常我的URL格式就像下面,
http://localhost:4695/#/system/home/dashboard
當我發帖的形式,它變得像,
http://localhost:4695/?companyFullName=&name=&position=#/system/home/dashboard
這是我後我的形式。
$http.post('http://localhost:2795/api/company', data, { headers: { 'Content-Type': 'application/json; charset=utf-8' } });