Symfony 3 Ajax 呼叫路由问题
Symfony 3 Ajax call routing issue
我正在使用我的一种表单设置一个简单的 Ajax 调用。当用户在字段中输入字符时,将激活以下 Ajax 调用:
self.modify = function (input_field) {
if ($(input_field).val().length > 5) {
$.post("{{path('get_bio_control_sample')}}", {sample_number: $(input_field).val()},
function (response) {
if (response.code == 100 && response.success) {
alert(response.sample_number);
}
}, "json");
}
};
这是为了访问以下控制器操作:
class BioControlController extends Controller {
/**
* @Route("/bio_control/sample", name="get_bio_control_sample")
*/
public function getBioControlSampleAction(Request $request){
$sample_number = $request->query->get('sample_number');
$response = array("code" => 100, "success" => true, "sample_number" => $sample_number, "sample_data" => "test");
return new JsonResponse($response);
}
}
但是调用JS时returns启动时报错:
http://127.0.0.1:8000/omics_experiment/%7B%7Bpath('get_bio_control_sample')%7D%7D 404 (Not Found)
我正在从 omics_experiment/new
(在 OmicsExperimentController
中)访问 Ajax 调用并使用路由 /bio_control/sample
(如注释所示),但它不工作。有人可以解释我做错了什么吗?
我使用 this 问题作为模板,事实上我使用的是 Symfony 3 可能意味着存在语法错误。
我最近不得不这样做。我也不是 Symfony 的专家,但由于我刚刚这样做,所以我可能会提供帮助。使用 Symfony 与使用静态 URL 并没有太大区别。最主要的是确保你的控制器和路由设置正确并且在没有 AJAX 的情况下工作,然后你只需要使用路由中设置的路径进行 .post 调用。
更糟糕的是,很难测试这种类型的交互。如果设置错误,即使你的树枝包含也会导致它失败。
再次查看您的代码,我认为这可能是问题所在。改变这个
$.post("{{path('get_bio_control_sample')}}", {sample_number:
至此
$.post("/bio_control/sample", {sample_number:
因为我认为你拥有它的方式只适用于 twig 模板,所以如果 Symfony 没有像对待 twig 模板那样查看你的 JQuery 文件,那么,它不会理解如何获取路线。
我正在使用我的一种表单设置一个简单的 Ajax 调用。当用户在字段中输入字符时,将激活以下 Ajax 调用:
self.modify = function (input_field) {
if ($(input_field).val().length > 5) {
$.post("{{path('get_bio_control_sample')}}", {sample_number: $(input_field).val()},
function (response) {
if (response.code == 100 && response.success) {
alert(response.sample_number);
}
}, "json");
}
};
这是为了访问以下控制器操作:
class BioControlController extends Controller {
/**
* @Route("/bio_control/sample", name="get_bio_control_sample")
*/
public function getBioControlSampleAction(Request $request){
$sample_number = $request->query->get('sample_number');
$response = array("code" => 100, "success" => true, "sample_number" => $sample_number, "sample_data" => "test");
return new JsonResponse($response);
}
}
但是调用JS时returns启动时报错:
http://127.0.0.1:8000/omics_experiment/%7B%7Bpath('get_bio_control_sample')%7D%7D 404 (Not Found)
我正在从 omics_experiment/new
(在 OmicsExperimentController
中)访问 Ajax 调用并使用路由 /bio_control/sample
(如注释所示),但它不工作。有人可以解释我做错了什么吗?
我使用 this 问题作为模板,事实上我使用的是 Symfony 3 可能意味着存在语法错误。
我最近不得不这样做。我也不是 Symfony 的专家,但由于我刚刚这样做,所以我可能会提供帮助。使用 Symfony 与使用静态 URL 并没有太大区别。最主要的是确保你的控制器和路由设置正确并且在没有 AJAX 的情况下工作,然后你只需要使用路由中设置的路径进行 .post 调用。
更糟糕的是,很难测试这种类型的交互。如果设置错误,即使你的树枝包含也会导致它失败。
再次查看您的代码,我认为这可能是问题所在。改变这个
$.post("{{path('get_bio_control_sample')}}", {sample_number:
至此
$.post("/bio_control/sample", {sample_number:
因为我认为你拥有它的方式只适用于 twig 模板,所以如果 Symfony 没有像对待 twig 模板那样查看你的 JQuery 文件,那么,它不会理解如何获取路线。