可能是我在问一个愚蠢的问题,但我想以任何方式做到这一点。 我正在创建一个MEAN项目,其中Frontend(Angular 8)在localhost:4200上运行,而backend(Nodejs)在localhost:4000上运行。 我的情况是我直接命中了一个后端请求,即如下所示的localhost:4000
<a target="_blank" href="localhost:4000/notice-payment/{{ element.id }}" title="Print payment receipt"><strong><i class="fa fa-print" aria-hidden="true"></i></strong> </a>
现在发生了什么,请求在代码中提到的新选项卡中 但是我想要的是后端,它应该像往常一样工作,但是我写了一个代码,但是应该在地址栏中为用户显示前端URL,因为我不想向用户显示后端在我的工作路线上。 当新标签页打开时,网址应类似于localhost:4200 / notice-payment / 100,而不是localhost:4000 / notice-payment / 100,但应仅与localhost:4200 / notice-payment / 100一起使用