微信小程序开发实现的IP地址查询功能示例

微信小程序开发实现的IP地址查询功能示例

微信小程序 开发 参考   https://mp.weixin.qq.com/debug/wxadoc/dev/component/

微信小程序开发实现的IP地址查询功能示例

search.wxml

<view> <view> <view> <view> <view> <icon></icon> <input type="text" placeholder="输入IP" confirm-type="search" bindinput="bindKeyInput" bindconfirm="searchSubmit" value="{{searchValue}}" focus="{{focus}}" /> <a href="javascript:" bindtap="searchClearClick"></a> </view> <view bindtap="searchTextClick"> <icon></icon> <view>搜索(8.8.8.8)</view> </view> </view> <view bindtap="searchCancelClick">取消</view> </view> </view> <view> <view> <text>查询结果</text> </view> <view> <scroll-view scroll-y="true" bindscrolltoupper="upper" bindscrolltolower="lower" bindscroll="scroll" scroll-into-view="{{toView}}" scroll-top="{{scrollTop}}"> <view> <view> {{r.ip}}</view> </view> <view> <view> <text>{{r.continent}}</text> </view> <view>大洲</view> </view> <view> <view> <text>{{r.country}}</text> </view> <view>国家</view> </view> <view> <view> <text>{{r.province}}</text> </view> <view>省份</view> </view> <view> <view> <text>{{r.city}}</text> </view> <view>城市</view> </view> <view> <view> <text>{{r.district}}</text> </view> <view>县区</view> </view> <view> <view> <text>{{r.isp}}</text> </view> <view>运营商</view> </view> <view> <view> <text>{{r.areacode}}</text> </view> <view>行政区划</view> </view> <view> <view> <text>{{r.en}}</text> </view> <view>国家英文</view> </view> <view> <view> <text>{{r.cc}}</text> </view> <view>国家缩写</view> </view> <view> <view> <text>{{r.lng}}</text> </view> <view>经度</view> </view> <view> <view> <text>{{r.lat}}</text> </view> <view>纬度</view> </view> <view> <view> <text>{{r.version}}</text> </view> <view>版本</view> </view> </scroll-view> <view>滚动查看内容</view> </view> </view> </view>

search.js

Page({ data: { inputValue: '', focus: false, searchFocusCss: '', r: [] }, onReady: function () { var that = this; wx.request({ url: 'https://www.qqzeng.com/ip', method: 'POST', data: { ip: 'qqzengip' }, header: { 'content-type': 'application/x-www-form-urlencoded' }, success: function (res) { that.setData({ r: res.data.data }) }, fail: function () { // fail }, complete: function () { // complete } }) }, searchTextClick: function () { this.setData({ searchFocusCss: 'weui-search-bar_focusing', focus: true }) }, searchCancelClick: function () { this.setData({ searchFocusCss: '', focus: false }) }, searchClearClick: function () { this.setData({ searchValue: '', focus: true }) }, bindKeyInput: function (e) { this.setData({ inputValue: e.detail.value }) }, //搜索提交 searchSubmit: function () { var that = this; var ip = this.data.inputValue; if (ip) { var isIP = ip.match(/^([1-9]\d*|0[0-7]*|0x[\da-f]+)(?:\.([1-9]\d*|0[0-7]*|0x[\da-f]+))(?:\.([1-9]\d*|0[0-7]*|0x[\da-f]+))(?:\.([1-9]\d*|0[0-7]*|0x[\da-f]+))$/i); if (!isIP) { wx.showToast({ title: 'ip格式不正确', image: '/images/tip.png' }); return false; } wx.showToast({ title: '搜索中', icon: 'loading' }); wx.request({ url: 'https://www.qqzeng.com/ip', method: 'POST', data: { ip: ip }, header: { 'content-type': 'application/x-www-form-urlencoded' }, success: function (res) { that.setData({ r: res.data.data }) }, fail: function () { // fail }, complete: function () { // complete wx.hideToast(); } }) } }, onShareAppMessage: function () { return { title: 'IP地址查询-qqzeng-ip', path: '/pages/ip/search', success: function (res) { // 分享成功 }, fail: function (res) { // 分享失败 } } } })

search.wxss

@import "../common/weui.wxss"; .page-section-spacing { margin-top: 0rpx; } .page-section-title { text-align: center; padding: 40rpx 0rpx 0rpx 0rpx; color: #9b9b9b; font-size: 36rpx; } @media (min-width: 320px) { .ip-scroll { height: 640rpx; } } @media (min-width: 360px) { .ip-scroll { height: 816rpx; } } @media (min-width: 375px) { .ip-scroll { height: 836rpx; } } @media (min-width: 384px) { .ip-scroll { height: 826rpx; } } @media (min-width: 414px) { .ip-scroll { height: 868rpx; } } .scroll-view-item { height: 90rpx; line-height: 90rpx; color: #000; border-bottom: 1px solid #eee; text-align: center; vertical-align: middle; margin: 0px 20px; } .view-item-ip { line-height: 90rpx; color: #2ab059; display: inline-block; font-size: 36rpx; } .weui-cell__bd { color: #2ab059; } .ip-tip { color: #eee; font-size: 20rpx; text-align: center; padding-top: 20rpx; }

app.json

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/0f4d873bbb71359325fb91356dcb028c.html