我很难理解令牌概念
在woocommerce信用卡中,有一个代码基本上删除了表单中的名称,并带有注释,说明启用了标记化后,是否不需要过帐?
/**
* Output field name HTML
*
* Gateways which support tokenization do not require names - we don't want the data to post to the server.
*
* @since 2.6.0
* @param string $name Field name.
* @return string
*/
public function field_name( $name ) {
return $this->supports( 'tokenization' ) ? '' : ' name="' . esc_attr( $this->id . '-' . $name ) . '" ';
}