0

それらの文字列の1つであるかどうか、および空であるかどうかを確認したいifステートメントがありますが、正しく表現する方法がわかりません。これは基本的なことですが、グーグルでこれをどのように表現するかわかりません。どうもありがとう!

if(condition1 == "string" || condition2 == "string" && is empty){
    do this
}
4

2 に答える 2

0
if((typeof condition1 == 'string' && condition1.length == 0) || (typeof condition2 == 'string' && condition2.length == 0))

それを分解する(typeof condition1 == 'string' && condition1.length == 0)と、変数が文字列で長さが0であることを確認するだけです。falseと評価された場合、condition2が文字列であり、長さが0であるかどうかを確認します。いずれかのステートメントがtrueの場合、ifステートメントtrueを返します。

于 2013-01-07T22:11:20.583 に答える
0

編集:jsFiddleを参照して更新

//object drill down
var colField = evt.cell.field; //this gives me the column names of the grid in dojo
var mystring = item[colField] || ""; // gets item based on colField property
var fields = ["Owner", "Home", "Realtor", "Broker"]; // fields to check colField against

//here is the conditional statement. if column Owner, Home, Realtor or Broker property is empty in that object do the following
if(fields.indexOf(colField) !== -1 && mystring === "") {

}

更新されたjsFiddle:http: //jsfiddle.net/3AXN7/4/

チェックする列が3つ以上あるため、すべての列名を配列に入れてから、それらの条件をすべてifステートメントに入れるのではなく、colFieldが配列にあるかどうかをチェックする方がはるかに明確で保守しやすくなります。 。

これに関する唯一の問題は、indexOfがIE6-8でサポートされていないことです。これがすべてのブラウザで機能することを確認したい場合は、indexOfのデフォルトの実装を提供する必要があります。これは、次のコードで実行できます。

if (!Array.prototype.indexOf) {
  Array.prototype.indexOf = function (searchElement /*, fromIndex */) {
    "use strict";

    if (this === void 0 || this === null)
      throw new TypeError();

    var t = Object(this);
    var len = t.length >>> 0;
    if (len === 0)
      return -1;

    var n = 0;
    if (arguments.length > 0) {
      n = Number(arguments[1]);
      if (n !== n)
        n = 0;
      else if (n !== 0 && n !== (1 / 0) && n !== -(1 / 0))
        n = (n > 0 || -1) * Math.floor(Math.abs(n));
    }

    if (n >= len)
      return -1;

    var k = n >= 0
          ? n
          : Math.max(len - Math.abs(n), 0);

    for (; k < len; k++) {
      if (k in t && t[k] === searchElement)
        return k;
    }

    return -1;
  };
}
于 2013-01-07T22:32:54.837 に答える