真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

微信小程序?qū)崿F(xiàn)評(píng)論功能

本文實(shí)例為大家分享了微信小程序?qū)崿F(xiàn)評(píng)論功能的具體代碼,供大家參考,具體內(nèi)容如下

讓客戶(hù)滿(mǎn)意是我們工作的目標(biāo),不斷超越客戶(hù)的期望值來(lái)自于我們對(duì)這個(gè)行業(yè)的熱愛(ài)。我們立志把好的技術(shù)通過(guò)有效、簡(jiǎn)單的方式提供給客戶(hù),將通過(guò)不懈努力成為客戶(hù)在信息化領(lǐng)域值得信任、有價(jià)值的長(zhǎng)期合作伙伴,公司提供的服務(wù)項(xiàng)目有:國(guó)際域名空間、虛擬空間、營(yíng)銷(xiāo)軟件、網(wǎng)站建設(shè)、杭錦后網(wǎng)站維護(hù)、網(wǎng)站推廣。

前端



 留言

 
評(píng)論內(nèi)容:
 
  
    

 

 {{item.input_value}}
  
   
   
    
   

js: 默認(rèn)展示歷史評(píng)論,評(píng)論后也刷新頁(yè)面,連帶此次評(píng)論內(nèi)容一起展示。

var bindblur ;
Page({
 bindblur:function(e){
 console.log('1111111:', e.detail.value)
 bindblur = e.detail.value;
 },
 
 onLoad: function (a) {
 var that = this;
 actid = a.id;
 // 查詢(xún)?cè)u(píng)論fetch
 wx.request({
 url: 'https://m.yishushe.net/addons/up_text.php',
 method: 'POST',
 header: {
 'content-Type': 'application/x-www-form-urlencoded',
 'Accept': 'application/json'
 },
 data: {
 act_id: actid
 },
 success: function (result) {
 that.setData({
  pl_list: result.data.reverse(),
 })
 },
 fail: res => {
 wx.showToast({
  title: '網(wǎng)絡(luò)不好喲',
  image: '/image/wrong.png',
  duration: 3000
 })
 }
 })
},
 btn_send: function () {
 var that = this
 //添加評(píng)論
 console.log('文章id:act_id :', actid);
 console.log('用戶(hù)緩存id:user_id :', user_id);
 console.log('文本輸入框: input_value :', bindblur);
 wx.request({
 url: 'https://m.yishushe.net/addons/up_text.php',
 method: 'POST',
 header: {
 'content-Type': 'application/x-www-form-urlencoded',
 'Accept': 'application/json'
 },
 data: {
 act_id: actid,
 user_id: user_id,
 input_value: bindblur
 },
 success: function (result) {
 that.setData({
  pl_list: result.data.reverse(),
  input_value: "",
 })
 },
 fail: res => {
 wx.showToast({
  title: '網(wǎng)絡(luò)不好喲',
  image: '/image/wrong.png',
  duration: 3000
 })
 }
 })
 }
})

后端php 源碼:

<?php
 header("Content-Type:text/html;charset=utf8"); 
 header("Access-Control-Allow-Origin: *"); //解決跨域
 header('Access-Control-Allow-Methods:POST');// 響應(yīng)類(lèi)型 
 header('Access-Control-Allow-Headers:*'); // 響應(yīng)頭設(shè)置 
 $link=MySQL_connect("localhost","root","root"); 
 mysql_select_db("weiqing", $link); //選擇數(shù)據(jù)庫(kù)
 mysql_query("SET NAMES utf8");//解決中文亂碼問(wèn)題
 //$username = $_POST['username'];
 //$avatarUrl = $_POST['avatarUrl'];
 $act_id = $_POST['act_id'];
 if($_POST['input_value']){
 $user_id = $_POST['user_id'];
 $input_value = $_POST['input_value'];
 //echo $avatarUrl."----time:". $time."----iv:".$iv."----inputValue:". $inputValue;
 //插入數(shù)據(jù)到數(shù)據(jù)庫(kù) 
 $strsql = "insert into pinglun (act_id,user_id,input_value) values('$act_id','$user_id','$input_value')";
 //mysql_query() 函數(shù)執(zhí)行一條 MySQL 查詢(xún)。SELECT,SHOW,EXPLAIN 或 DESCRIBE 都需要用這個(gè)函數(shù)執(zhí)行
 $result = @mysql_query($strsql);
 
 }
 
 $q = "SELECT * FROM pinglun"; //SQL查詢(xún)語(yǔ)句 SELECT * FROM 表名
 $rs = mysql_query($q); //獲取數(shù)據(jù)集
 if(!$rs){die("數(shù)據(jù)庫(kù)沒(méi)有數(shù)據(jù)!");}
 
 //循環(huán)讀取數(shù)據(jù)并存入數(shù)組對(duì)象
 $dlogs;$i=0;
 while($row=mysql_fetch_array($rs))
 {
 if($act_id ==$row["act_id"]){
 $dlog["act_id"]=$row["act_id"];
 $dlog["user_id"]=$row["user_id"];
 $dlog["input_value"]=$row["input_value"];
 }
 //$dlog["avatarUrl"]=$row["avatarUrl"];
 //$dlog["username"]=$row["username"];
 $dlogs[$i++]=$dlog;
 }
 
 
 //以json格式返回html頁(yè)面
 
 echo urldecode(json_encode($dlogs));
?>

如果php返回報(bào)錯(cuò)就找到php-ini 配置文件 ,把

display_errors = On
改為
display_errors = Off

禁止php報(bào)錯(cuò)

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。


標(biāo)題名稱(chēng):微信小程序?qū)崿F(xiàn)評(píng)論功能
瀏覽地址:http://weahome.cn/article/jehpse.html

其他資訊

在線(xiàn)咨詢(xún)

微信咨詢(xún)

電話(huà)咨詢(xún)

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部