- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 JavaScript 和 JQuery 中有一个钢琴键盘对象,如下所示:
function Keyboard(name, size, xPos, yPos, octaves) {
this.name = name;
this.size = size;
this.setDimensions = function (){};
this.highlightKeyboard = function (){};
...
etc.
}
它有很多方法来设置尺寸,使用 div 作为按键生成键盘,生成引用 div 类的主要和次要音阶,等等。
我编写了 4 种方法,用于在按下某个键时突出显示大调音阶,在按下不同的键时突出显示小调音阶,并使用其他两个键突出显示大调和小调三和弦。它们都有效,但在编写它们之后,我意识到所有 4 个方法都使用了很多相同的代码,因此我一直在尝试通过将大部分代码引入主 Keyboard 对象中的单独方法中来进行整合,以便我可以重复调用它们。
我现在遇到的问题是如何让 $(document).keypress
对象与外部代码很好地配合。
我想要的是这样的(部分代码示例 - 我省略了生成键盘的所有代码以及其他所有不相关的内容,因为除了这个问题之外它似乎工作正常):
function Keyboard(name, size, xPos, yPos, octaves) {
this.getMajorTonic = (function(userNote) {
// code to determine myTonic
return myTonic;
});
this.setMajScale = function(myTonic) {
var scale = [];
// code to determine scale[];
return scale;
};
this.setScaleClasses = function(scale) {
// code to determine scale_classes[]
return scale_classes;
};
this.highlightKeyboard = function (scale, scale_classes){};
// code to add highlighted classes to my divs based
// on the values in scale and scale_classes
};
this.findMajorScales = function(userNote);
var myTonic = this.getMajorTonic(userNote);
var scale = this.setMajScale(myTonic);
var scale_classes = this.setScaleClasses(scale);
var highlightKeyboard = this.highlightKeyboard;
$(document).keypress(function (event) {
if (event.which === 109) {
highlightKeyboard(scale, scale_classes)
}
});
};
}
var keys = new Keyboard("piano", 1, 0, 0, 2);
keys.findMajorScales("E");
期望的效果是,当我加载页面时,它会生成一个空白键盘,但是当我按下“m”键时,它会使用 this.highlightKeyboard
方法突出显示 E 大调音阶。所以我想将 this.findMajorScales
方法传递给一个不带参数的 this.highlightKeyboard
方法,然后填写参数并在按“m”键时执行该方法被按下。大多数东西都可以工作,包括 ($document).keypress
对象,它执行其他代码,只是不执行带有正确参数的 this.highlightKeyboard
方法。
我该如何实现这个目标? .bind 与它有什么关系吗?我真的不知道它是否适用于这里或者我是否需要做其他事情。
非常感谢!
jack
最佳答案
So I want to pass the this.findMajorScales method a this.highlightKeyboard method with no arguments, and then have the arguments filled in and the method executed when the "m" key is pressed.
您正在监听 M,所以您遇到的唯一问题是在正确的上下文中调用 highlightKeyboard
。
考虑
var foo = {bar: function () {return this}),
bar = foo.bar;
foo.bar()
将返回什么? (foo
)bar()
将返回什么? (window
或 null
或抛出错误等)
有几种方法可以解决这个问题,您已经提到了 Function.prototype.bind
从概念上来说,使用 Function.prototype.call
可能更容易, Function.prototype.apply
或者甚至通过使用另一个标识符来传递 this
变量。
无论哪种情况,处理程序中的默认 this
将不再是 Keyboard 的实例,因为事件来自 document
使用Function.prototype.bind
你有几个选择
var highlightKeyboard = this.highlightKeyboard.bind(this);
$(document).keypress(function (event) {
if (event.which === 109) {
highlightKeyboard(scale, scale_classes);
}
});
// or binding args ahead of time too
var highlightKeyboard = this.highlightKeyboard.bind(this, scale, scale_classes);
$(document).keypress(function (event) {
if (event.which === 109) {
highlightKeyboard();
}
});
// or binding the handler
$(document).keypress(function (event) {
if (event.which === 109) {
this.highlightKeyboard(scale, scale_classes);
}
}.bind(this));
使用Function.prototype.call
或.apply
,需要引用this
var highlightKeyboard = this.highlightKeyboard;
var me = this;
$(document).keypress(function (event) {
if (event.which === 109) {
highlightKeyboard.call(me, scale, scale_classes);
}
});
仅使用对this
的引用
var me = this;
$(document).keypress(function (event) {
if (event.which === 109) {
me.highlightKeyboard(scale, scale_classes);
}
});
<小时/>
最后,还有一个解决方案是编写一个函数来生成您想要的内容,这与 .bind
所做的非常相似,但在不支持 的环境中受支持。绑定(bind)
(读取:遗留)
$(document).keypress(function (me) { // this function generates the inside one
return function (event) { // this is the function used as the handler
if (event.which === 109) {
me.highlightKeyboard(scale, scale_classes);
}
};
}(this)); // passing in `this` as param `me`
关于javascript - javascript .bind 可以上升多个级别吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31190985/
Android 项目中最低(最低 sdk)和最高(目标 sdk)级别是否有任何影响。这些东西是否会影响项目的可靠性和效率。 最佳答案 没有影响,如果您以 SDK 级别 8 为目标,那么您的应用将以 9
我将现有的 android 项目升级到 API 级别 31。我使用 Java 作为语言。我改变了 build.gradle compileSdkVersion 31 defaultConfig {
我正在使用 ionic 3 创建一个 android 应用程序,当我尝试上传到 playstore 时,我收到一个错误,提示我的应用程序以 api 25 为目标,当我检查我的 project.prop
我刚刚尝试将应用程序的目标和编译 API 级别更新为 29 (Android 10),并注意到我无法再编译,因为 LocationManager.addNmeaListener 只接受 OnNmeaM
我的代码没有在 Kitkat 上显示工具栏。 这是我的两个 Android 版本的屏幕截图。 Kitkat 版本: Lollipop 版: 这背后的原因可能是什么。 list 文件
我正在构建面向 API 级别 8 的 AccessabilityService,但我想使用 API 级别 18 中引入的功能 (getViewIdResourceName())。这应该可以通过使用 A
当我想在我的电脑上创建一个 android 虚拟机时,有两个选项可以选择目标设备。它们都用于相同的 API 级别。那么我应该选择哪一个呢?它们之间有什么区别? 最佳答案 一个是基本的 Android,
当我选择 tagret 作为 Android 4.2.2(API 级别 17)时,模拟器需要很长时间来加载和启动。 所以我研究它并通过使用 找到了解决方案Intel Atom(x86) 而不是 ARM
我有一个使用 Android Studio 创建的 Android 项目。我在项目中添加了一些第三方依赖项,但是当我尝试在 Android Studio 中编译时,我遇到了以下错误: Error:Ex
如上所述,如何使用 API 8 获取移动设备网络接口(interface)地址? 最佳答案 NetworkInterface.getInetAddresses() 在 API8 中可用。 关于andr
我想显示 Snackbar并使用图像而不是文本进行操作。 我使用以下代码: val imageSpan = ImageSpan(this, R.drawable.star) val b
我有一个用 python 编写的简单命令行程序。程序使用按以下方式配置的日志记录模块将日志记录到屏幕: logging.basicConfig(level=logging.INFO, format='
使用下面的代码,实现游戏状态以控制关卡的最简单和最简单的方法是什么?如果我想从标题画面开始,然后加载一个关卡,并在完成后进入下一个关卡?如果有人能解释处理这个问题的最简单方法,那就太好了! impor
我想创建一个可以找到嵌套树结构深度的属性。下面的静态通过递归找出深度/级别。但是是否可以将此函数作为同一个类中的属性而不是静态方法? public static int GetDepth(MenuGr
var myArray = [{ title: "Title 1", children: [{ title: "Title 1.1", children: [{
通过下面的代码,实现游戏状态来控制关卡的最简单、最容易的方法是什么?如果我想从标题屏幕开始,然后加载一个关卡,并在完成后进入下一个关卡?如果有人可以解释处理这个问题的最简单方法,那就太好了! impo
我有一个树结构,其中每个节点基本上可以有无限个子节点,它正在为博客的评论建模。 根据特定评论的 ID,我试图找出该评论在树中的深度/级别。 我正在关注 this guide that explains
考虑任何给定的唯一整数的数组,例如[1,3,2,4,6,5] 如何确定“排序度”的级别,范围从 0.0 到 1.0 ? 最佳答案 一种方法是评估必须移动以使其排序的项目数量,然后将其除以项目总数。 作
我如何定义一个模板类,它提供一个整数常量,表示作为输入模板参数提供的(指针)类型的“深度”?例如,如果类名为 Depth,则以下内容为真: Depth::value == 3 Depth::value
我的场景是:文件接收器应该包含所有内容。另一个接收器应包含信息消息,但需要注意的是 Microsoft.* 消息很烦人,因此这些消息应仅限于警告。两个sink怎么单独配置?我尝试的第一件事是: str
我是一名优秀的程序员,十分优秀!