您好,我正在通过 Ajax 编写一个搜索系统,但我遇到了一个问题,是否可以通过 ajax 中断数据获取并为 javascript 中的每一行执行foreach ?
在这里,我将用户的搜索查询发送到一个 php 文件,该文件从数据库中返回该查询的结果。
$.post("rpc.php", {queryString: ""+inputString+""}, function(data) {
$('#suggestions').html(data); // Fill the suggestions div
});
因此来自 php 文件的数据作为一组但逐行存储在data变量中,例如示例..
Google helps us
Facebook is a social network
Stackoverflow is the best
Im on twitter
但
$('#suggestions').html(data);
将直接将数据中的所有内容放入建议 html 元素中。
我想知道是否可以将数据内部的内容分解为行并为每一行执行foreach ......