我有一个文本输入,我写了一个条形码,它从数据库中返回名称和价格。
我的代码如下所示:
查看:
<script>
function showProduct(str) {
if (str == "") {
document.getElementById("txtHint").innerHTML = "";
return;
} else {
if (window.XMLHttpRequest) {
// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp = new XMLHttpRequest();
}
xmlhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
console.log(this.responseText);
var jsonObject = JSON.stringify(this.responseText);
document.getElementById("nameHint").innerHTML = jsonObject["name"];
document.getElementById("priceHint").innerHTML = jsonObject["price"];
}
};
xmlhttp.open("GET","/getproduct/q="+str,true);
xmlhttp.send();
}
}
</script>
{{ Form::open() }}
{{Form::text('barcode', null, ['onchange'=>"showProduct(this.value)"])}}
<div id="nameHint></div>
<div id="priceHint></div>
{{Form::close}}
控制器:
public function getProduct($id){
ini_set('display_errors', 1);error_reporting(E_ALL);
$sql = DB::select('select * from inventory where barcode = ?', [$id]);
$name = $sql[0]->name;
$price= $sql[0]->price;
echo json_encode(array("name"=>$name, "price"=>$price));
}
当我写条形码时,它会显示:undefined
,它必须显示名称和价格。我错过了什么?
答案 0 :(得分:2)
您有一个JSON字符串(this.responseText
),您需要一个JavaScript对象(jsonObject
)。您希望使用JSON.parse
,它将JSON字符串转换为JavaScript对象,而不是JSON.stringify
,而后者则将JavaScript对象转换为JSON字符串。
var jsonObject = JSON.parse(this.responseText);
// ^-- here