首頁 > web前端 > js教程 > 如何在不使用'eval()”的情況下從字串安全地呼叫 JavaScript 函數?

如何在不使用'eval()”的情況下從字串安全地呼叫 JavaScript 函數?

Mary-Kate Olsen
發布: 2024-10-29 07:37:30
原創
476 人瀏覽過

How to Safely Invoke a JavaScript Function from a String Without Using `eval()`?

從字串呼叫Javascript 函數呼叫

這個問題解決了轉換表示函數呼叫的字串的挑戰,例如「settings .functionName '(' t.parentNode.id ')'",進入實際的函數呼叫。目標是像直接輸入字串作為函數呼叫一樣執行函數,而不使用 eval(),出於安全考慮,不建議使用 eval()。

解決方案:

提供的解決方案提出了一種替代方法,即利用視窗物件來獲取對函數的引用。這是更新且更詳細的解釋:

<code class="javascript">// Store the function name extracted from the string as a variable
var functionName = settings.functionName;

// Check if the function exists in the global scope using window
if (typeof window[functionName] === 'function') {
  // If the function exists, invoke it with the specified argument
  window[functionName](t.parentNode.id);
}</code>
登入後複製

範例:

考慮以下設定物件:

<code class="javascript">window.settings = {
  functionName: 'clickedOnItem',
};</code>
登入後複製

以及以下函數定義:

<code class="javascript">function clickedOnItem(nodeId) {
  // Function body
}</code>
登入後複製

使用上面的解決方案,我們可以使用t.parentNode.id 參數呼叫clickedOnItem 函數,如下所示:

<code class="javascript">// Extract the function name from the settings object
var functionName = settings.functionName;

// Check if the function exists in the global scope
if (typeof window[functionName] === 'function') {
  // Invoke the function with the specified argument
  window[functionName](t.parentNode.id);
}</code>
登入後複製

此方法允許我們動態呼叫函數基於字串表示,而不求助於eval() 或損害安全性。

以上是如何在不使用'eval()”的情況下從字串安全地呼叫 JavaScript 函數?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板