• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

請問要如何把mui.ajax反回的數據加入網頁上

php 搞代码 4年前 (2022-01-23) 33次浏览 已收录 0个评论
文章目录[隐藏]

在APP運行, 發生以下錯誤, 請問要如何把mui.ajax反回的數據加入網頁上

Uncaught TypeError: Property ‘data’ of object function (b,c){if(c=c||a,!b)return j();if(“object”==typeof b)return i.isArrayLike(b)?j(i.slice.call(b),null):j([b],null);if(“function”==typeof b)return i.ready(b);if(“string”==typeof b)try{if(b=b.trim()……on at index2.html:38


function showHint(str) {
if (str.length == 0) {
document.getElementById(“txtHint”).innerHTML = “”;
return;
} else {

var url = ‘http://hktc.erufa.com/show.php’
mui.ajax(url,{

data:{
q:str
},

dataType:’html’,
type:’get’,//HTTP请求类型
timeout:30000,//超时时间设置为10秒;

success:function(data){

//服务器返回响应,根据响应结果,分析是否登录成功;
document.getElementById(“txtHint”).innerHTML = data;
},

error:function(xhr,ty本#文来源gaodai$ma#com搞$$代**码网$pe,errorThrown){

//异常处理;
console.log(type);
}

});

Start typing a name in the input field below:

First name:

Suggestions:


php code

<?php
header(“Access-Control-Allow-Origin:*”);
header(“Content-type:text/html; charset=utf-8”);

$a[] = “Anna”;
$a[] = “Brittany”;
$a[] = “Cinderella”;
$a[] = “Diana”;
$a[] = “Eva”;
$a[] = “Fiona”;
$a[] = “Gunda”;
$a[] = “Hege”;
$a[] = “Inga”;
$a[] = “Johanna”;
$a[] = “Kitty”;
$a[] = “Linda”;
$a[] = “Nina”;
$a[] = “Ophelia”;
$a[] = “Petunia”;
$a[] = “Amanda”;
$a[] = “Raquel”;
$a[] = “Cindy”;
$a[] = “Doris”;
$a[] = “Eve”;
$a[] = “Evita”;
$a[] = “Sunniva”;
$a[] = “Tove”;
$a[] = “Unni”;
$a[] = “Violet”;
$a[] = “Liza”;
$a[] = “Elizabeth”;
$a[] = “Ellen”;
$a[] = “Wenche”;
$a[] = “Vicky”;

// get the q parameter from URL
$q = $_REQUEST[“q”];

$hint = “”;

// lookup all hints from array if $q is different from “”
if ($q !== “”) {

<code>$q = strtolower($q);$len=strlen($q);foreach($a as $name) {    if (stristr($q, substr($name, 0, $len))) {        if ($hint === "") {            $hint = $name;        } else {            $hint .= ", $name";        }    }}</code>

}

// Output “no suggestion” if no hint was found or output correct values
echo $hint === “” ? “no suggestion” : $hint;
?>

回复内容:

在APP運行, 發生以下錯誤, 請問要如何把mui.ajax反回的數據加入網頁上

Uncaught TypeError: Property ‘data’ of object function (b,c){if(c=c||a,!b)return j();if(“object”==typeof b)return i.isArrayLike(b)?j(i.slice.call(b),null):j([b],null);if(“function”==typeof b)return i.ready(b);if(“string”==typeof b)try{if(b=b.trim()……on at index2.html:38


function showHint(str) {
if (str.length == 0) {
document.getElementById(“txtHint”).innerHTML = “”;
return;
} else {

var url = ‘http://hktc.erufa.com/show.php&#8217;
mui.ajax(url,{

data:{
q:str
},

dataType:’html’,
type:’get’,//HTTP请求类型
timeout:30000,//超时时间设置为10秒;

success:function(data){

//服务器返回响应,根据响应结果,分析是否登录成功;
document.getElementById(“txtHint”).innerHTML = data;
},

error:function(xhr,type,errorThrown){

//异常处理;
console.log(type);
}

});

Start typing a name in the input field below:

First name:

Suggestions:


php code

<?php
header(“Access-Control-Allow-Origin:*”);
header(“Content-type:text/html; charset=utf-8”);

$a[] = “Anna”;
$a[] = “Brittany”;
$a[] = “Cinderella”;
$a[] = “Diana”;
$a[] = “Eva”;
$a[] = “Fiona”;
$a[] = “Gunda”;
$a[] = “Hege”;
$a[] = “Inga”;
$a[] = “Johanna”;
$a[] = “Kitty”;
$a[] = “Linda”;
$a[] = “Nina”;
$a[] = “Ophelia”;
$a[] = “Petunia”;
$a[] = “Amanda”;
$a[] = “Raquel”;
$a[] = “Cindy”;
$a[] = “Doris”;
$a[] = “Eve”;
$a[] = “Evita”;
$a[] = “Sunniva”;
$a[] = “Tove”;
$a[] = “Unni”;
$a[] = “Violet”;
$a[] = “Liza”;
$a[] = “Elizabeth”;
$a[] = “Ellen”;
$a[] = “Wenche”;
$a[] = “Vicky”;

// get the q parameter from URL
$q = $_REQUEST[“q”];

$hint = “”;

// lookup all hints from array if $q is different from “”
if ($q !== “”) {

<code>$q = strtolower($q);$len=strlen($q);foreach($a as $name) {    if (stristr($q, substr($name, 0, $len))) {        if ($hint === "") {            $hint = $name;        } else {            $hint .= ", $name";        }    }}</code>

}

// Output “no suggestion” if no hint was found or output correct values
echo $hint === “” ? “no suggestion” : $hint;
?>


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:請問要如何把mui.ajax反回的數據加入網頁上

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址