我怎样才能在Angular4中使用php文件?

时间:2018-06-11 17:48:08

标签: php angular forms

如何在angular4中导入和使用我的'register.php'和'dbConnect.php'文件以在index.html上使用我的注册表单?

3 个答案:

答案 0 :(得分:-1)

我宁愿将index.html中的angular 4内容移动到index.PHP并在index.php中包含其他PHP文件

答案 1 :(得分:-1)

只有你可以在角度应用程序中使用php(基本上只是html + js)才能在iframe中使用。但是没有意义,建议完全在Angular中重写你的表单,只使用php作为你使用XHR调用的后端(Angular中的HttpClient)。

答案 2 :(得分:-2)

你可以尝试

<?php require 'register.php';?>

<?php include 'register.php';?>