提交 3715eb65 编写于 作者: m0_65861709's avatar m0_65861709

update

上级 0b18a138
# 支付 # 支付
下列有关uni.requestPayment支付中描述错误的是 下列有关使用uni.requestPayment进行支付的描述中,错误的是?
## 答案 ## 答案
字节跳动小程序的 orderInfo 为 String 类型 uni.requestPayment的signType是非必填项。
## 选项 ## 选项
### A ### A
百度小程序的 orderInfo 为 Object 类型 在微信小程序中,uni.requestPayment只能拉起微信支付。
### B ### B
App端,支付宝支付 orderInfo 为 String 类型 nonceStr参数在微信小程序环境下是必填项。
### C ### C
App端,微信支付 orderInfo 为 Object 类型 微信小程序支付中,signType仅支持MD5、HMAC-SHA256 和RSA三种。
### D
App端,苹果应用内支付 orderInfo 为Object 类型
\ No newline at end of file
...@@ -10,7 +10,7 @@ uni.getStorage ...@@ -10,7 +10,7 @@ uni.getStorage
### A ### A
uni.getStorageSync uni.getStorageByKey
### B ### B
...@@ -18,4 +18,8 @@ uni.getStorageInfo ...@@ -18,4 +18,8 @@ uni.getStorageInfo
### C ### C
uni.getStorageInfoSync uni.getStorageInfoSync
\ No newline at end of file
### D
uni.getStorageKey
\ No newline at end of file
# 获取系统信息 # 获取系统信息
下列说法错误的是 当我们需要获取系统信息时,我们应该使用下列选项中哪个api?
## 答案 ## 答案
uni.getStorage uni.getSystemInfo
## 选项 ## 选项
......
...@@ -10,7 +10,7 @@ uni.showNavigationBarLoading ...@@ -10,7 +10,7 @@ uni.showNavigationBarLoading
### A ### A
uni.showNavigationBarLoading uni.showNavigationBar
### B ### B
...@@ -18,4 +18,8 @@ uni.hideHomeButton ...@@ -18,4 +18,8 @@ uni.hideHomeButton
### C ### C
uni.setNavigationBarTitle uni.setNavigationBarTitle
\ No newline at end of file
### D
uni.showNavigationBar
\ No newline at end of file
...@@ -4,21 +4,21 @@ ...@@ -4,21 +4,21 @@
## 答案 ## 答案
uni.navigateTo:页面可以无限次跳转 uni.navigateTo:页面可以无限次跳转,没有页面栈限制。
## 选项 ## 选项
### A ### A
uni.navigateTo:保留当前页面,跳转到应用内的某个页面 uni.navigateTo:保留当前页面,跳转到应用内的某个页面,有页面栈限制,
### B ### B
uni.redirectTo:关闭当前页面,跳转到应用内的某个页面 uni.redirectTo:关闭当前页面,跳转到应用内的某个页面,没有页面栈限制。
### C ### C
uni.switchTab:跳转到 tabBar 页面,并关闭其他所有非 tabBar 页面 uni.switchTab:跳转到 tabBar 页面,并关闭其他所有非 tabBar 页面,没有页面栈限制。
# 解决tabBar不能传参的问题 # 解决tabBar不能传参的问题
A页面跳转B,下列哪种方法不能在tabBar获取到参数id的值 A页面跳转B,下列哪种方法可以在tabBar的页面上获取到参数id的值?
## 答案 ## 答案
......
# ios设置页面回弹开关 # ios设置页面回弹开关
ios设备阻止页面回弹效果的方法 想要阻止ios设备页面回弹效果,我们应该使用下列选项中的哪个方法?
## 答案 ## 答案
在pages.json中配置"app-plus":{"bounce":"none"} 在pages.json中配置pages.style.disableScroll=true
## 选项 ## 选项
...@@ -24,3 +24,6 @@ overflow-y:hidden; ...@@ -24,3 +24,6 @@ overflow-y:hidden;
在pages.json中配置"scrollIndicator": "none" 在pages.json中配置"scrollIndicator": "none"
### C
在pages.json中配置"bounce": "none"
\ No newline at end of file
...@@ -4,13 +4,13 @@ ...@@ -4,13 +4,13 @@
## 答案 ## 答案
在pages.json中配置"app-plus":{"scrollIndicator":"none"} 在pages.json中配置"mp-weixin":{"scrollIndicator":"none"}
## 选项 ## 选项
### A ### A
::-webkit-scrollbar { ::scrollbar {
width: 0; width: 0;
height: 0; height: 0;
background-color: transparent; background-color: transparent;
......
# 尺寸单位转换 # 尺寸单位转换
下列有关隐藏当前页面滚动条方法正确的是 下列关于尺寸单位描述中,错误的是?
## 答案 ## 答案
在pages.json中配置"app-plus":{"scrollIndicator":"none"} px和rpx不管在什么情况下,都是1:1的
## 选项 ## 选项
### A ### A
::-webkit-scrollbar { px 即屏幕像素
width: 0;
height: 0;
background-color: transparent;
}
### B ### B
overflow-y:hidden; rpx 即响应式 px,一种根据屏幕宽度自适应的动态单位。
### C ### C
App端,微信支付 orderInfo 为 Object 类型 设计稿 1px 与框架样式 1rpx 转换公式:
设计稿 1px / 设计稿基准宽度 = 框架样式 1rpx / 750rpx
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册