2
我需要創建一個將在保存某個內容類型節點後觸發的操作,我需要腳本從提交的節點收集zip位置數據並將其提交到以查看ulr從剛剛創建的節點獲取數據並將其傳遞到url
這是數據插入的形式。
<fieldset class="location">
<legend>Location</legend>
<div id="edit-locations-0-postal-code-wrapper" class="form-item">
<label for="edit-locations-0-postal-code">
Postal code:
<span title="This field is required." class="form-required">*</span>
</label>
<input type="text" class="form-text required" value="" size="16"
id="edit-locations-0-postal-code" name="locations[0][postal_code]"
maxlength="16">
</div>
</fieldset>
這就是我要插入數據
www.mysite.com/testview?distance[postal_code]=DATA_GOES_HERE
是在DATA_GOES_HERE URL帶到一個頁面的用戶,還是會發生這種情況在幕後? –