English 中文(简体)
如何检查参数在 JavaScript 中是否为对象( 而不是数组)?
原标题:How to check if an argument is an object (and not an array) in JavaScript

在测试出 instasenceof 后,我发现如果参数是数组或对象字数, 则返回为真实 。

function test(options){
  if(options instanceof Object){alert( yes )}//this will alert for both arrays and object literals
}
test({x:11})// alerts
test([11])// alerts as well but I do not want it to

是否有方法可以测试 参数“ 选项” 是字面上的物体?

P. S. 我将创建一个模块, 允许用户访问其配置选项, 我想测试该参数是否只是“ 坚固” 字词 < / 坚固 ”?

最佳回答

是否有方法可以测试 参数“ 选项” 是用字词吗?

否, 因为它没有意义 。 您可以测试它是否为 < em> object < / em >, 但是它是如何创建的( 通过在您函数的调用中的字句, 通过别处的字句, 通过 < code> new object , 通过解除 JSON 字符串的音序,...), 它不是保留的信息 。

经过测试后,我发现如果参数是一个阵列或一个物体字面,它就会恢复为真实

正确。 JavaScript 中的阵列是对象( < a href="http://blog.niftysnippets.org/2011/01/myth-of-arrays.html" rel=“ noreferrer" > 并非真正的阵列 )。

如果您想要测试一个对象是一个普通的旧对象, 您可以做到这一点 :

if (Object.prototype.toString.call(options) === "[object Object]") {
    // It s a plain object
}

但实际上没有理由这样做。 这不是你的问题。只要他们通过的东西具有你期望的属性, 不要试图进一步限制对象 。

p.s. i m 制作一个模块,让用户通过配置选项,我要测试以确保该参数仅是一个对象字句。

为什么?如果用户想要使用一个尚未被宣布为字面上的物体,那么,你为什么要在乎呢?如果他们想要使用他们通过不同的构造函数(例如,而不仅仅是一个普通物体)所创造的物体,你又为什么要关心呢?

问题回答
function isPlainObject(o) {
     return Object(o) === o && Object.getPrototypeOf(o) === Object.prototype;
}

然而,您无法测试是否将 o 宣布为字面或即刻宣布为其它东西 - 您只能测试它是否为 < em> plain 对象 , 没有比 < code> Object 更好的构建器 。

如果你试图禁止阵列, 你可以这样做:

var isObject = options instanceof Object;
var isArray = options instanceof Array;
if(isObject && !isArray)
{
    alert( yes );
}

另一种解决办法是使用Lodash:

_.isPlainObject(value)

Here is the documentation: https://lodash.com/docs/4.17.15#isPlainObject





相关问题
selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

How to fire event handlers on the link using javascript

I would like to click a link in my page using javascript. I would like to Fire event handlers on the link without navigating. How can this be done? This has to work both in firefox and Internet ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Clipboard access using Javascript - sans Flash?

Is there a reliable way to access the client machine s clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...

javascript debugging question

I have a large javascript which I didn t write but I need to use it and I m slowely going trough it trying to figure out what does it do and how, I m using alert to print out what it does but now I ...

Parsing date like twitter

I ve made a little forum and I want parse the date on newest posts like twitter, you know "posted 40 minutes ago ","posted 1 hour ago"... What s the best way ? Thanx.

热门标签